import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Get gateway * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const gateway = ovh.getCloudProjectGateway({ * serviceName: "", * region: "GRA11", * id: "", * }); * ``` */ export declare function getCloudProjectGateway(args: GetCloudProjectGatewayArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudProjectGateway. */ export interface GetCloudProjectGatewayArgs { /** * Id */ id: string; /** * Gateway region */ region: string; /** * Service name */ serviceName: string; } /** * A collection of values returned by getCloudProjectGateway. */ export interface GetCloudProjectGatewayResult { /** * External information */ readonly externalInformation: outputs.GetCloudProjectGatewayExternalInformation; /** * Id */ readonly id: string; /** * Interfaces list of the gateway */ readonly interfaces: outputs.GetCloudProjectGatewayInterface[]; /** * Model of the gateway */ readonly model: string; /** * Name of the gateway */ readonly name: string; /** * Gateway region */ readonly region: string; /** * Service name */ readonly serviceName: string; /** * Status of the gateway */ readonly status: string; } /** * Get gateway * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const gateway = ovh.getCloudProjectGateway({ * serviceName: "", * region: "GRA11", * id: "", * }); * ``` */ export declare function getCloudProjectGatewayOutput(args: GetCloudProjectGatewayOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudProjectGateway. */ export interface GetCloudProjectGatewayOutputArgs { /** * Id */ id: pulumi.Input; /** * Gateway region */ region: pulumi.Input; /** * Service name */ serviceName: pulumi.Input; }