import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to list the gateways of a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const gateways = ovh.getCloudGateways({ * serviceName: "", * }); * export const gatewayNames = gateways.then(gateways => .map(g => (g.name))); * ``` */ export declare function getCloudGateways(args: GetCloudGatewaysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudGateways. */ export interface GetCloudGatewaysArgs { /** * Service name of the resource representing the id of the cloud project. */ serviceName: string; } /** * A collection of values returned by getCloudGateways. */ export interface GetCloudGatewaysResult { /** * List of gateways. Each element exports: */ readonly gateways: outputs.GetCloudGatewaysGateway[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly serviceName: string; } /** * Use this data source to list the gateways of a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const gateways = ovh.getCloudGateways({ * serviceName: "", * }); * export const gatewayNames = gateways.then(gateways => .map(g => (g.name))); * ``` */ export declare function getCloudGatewaysOutput(args: GetCloudGatewaysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudGateways. */ export interface GetCloudGatewaysOutputArgs { /** * Service name of the resource representing the id of the cloud project. */ serviceName: pulumi.Input; }