import * as pulumi from "@pulumi/pulumi"; /** * Use this datasource to get a public cloud project Gateway Interface. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const _interface = ovh.CloudProject.getGatewayInterface({ * serviceName: "XXXXXX", * region: "GRA11", * id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxx", * interfaceId: "yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyy", * }); * ``` */ export declare function getGatewayInterface(args: GetGatewayInterfaceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGatewayInterface. */ export interface GetGatewayInterfaceArgs { /** * ID of the gateway */ id: string; /** * ID of the interface */ interfaceId: string; /** * Region of the gateway */ region: string; /** * ID of the cloud project */ serviceName: string; } /** * A collection of values returned by getGatewayInterface. */ export interface GetGatewayInterfaceResult { /** * ID of the gateway */ readonly id: string; /** * ID of the interface */ readonly interfaceId: string; /** * IP of the interface */ readonly ip: string; /** * Network ID of the interface */ readonly networkId: string; /** * Region of the gateway */ readonly region: string; /** * ID of the cloud project */ readonly serviceName: string; /** * ID of the subnet to add */ readonly subnetId: string; } /** * Use this datasource to get a public cloud project Gateway Interface. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const _interface = ovh.CloudProject.getGatewayInterface({ * serviceName: "XXXXXX", * region: "GRA11", * id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxx", * interfaceId: "yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyy", * }); * ``` */ export declare function getGatewayInterfaceOutput(args: GetGatewayInterfaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGatewayInterface. */ export interface GetGatewayInterfaceOutputArgs { /** * ID of the gateway */ id: pulumi.Input; /** * ID of the interface */ interfaceId: pulumi.Input; /** * Region of the gateway */ region: pulumi.Input; /** * ID of the cloud project */ serviceName: pulumi.Input; }