import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to list the external network IPs of a public cloud project. External network IPs are created and deleted through the lifecycle of other products (typically instances attached to the public network), so this data source is a read-only view. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const ips = ovh.getCloudExtNetIps({ * serviceName: "", * }); * export const extNetIpAddresses = ips.then(ips => .map(ip => (ip.id))); * ``` */ export declare function getCloudExtNetIps(args?: GetCloudExtNetIpsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudExtNetIps. */ export interface GetCloudExtNetIpsArgs { /** * Service name of the resource representing the id of the cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName?: string; } /** * A collection of values returned by getCloudExtNetIps. */ export interface GetCloudExtNetIpsResult { /** * List of external network IPs. Each element exports: */ readonly extNetIps: outputs.GetCloudExtNetIpsExtNetIp[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly serviceName: string; } /** * Use this data source to list the external network IPs of a public cloud project. External network IPs are created and deleted through the lifecycle of other products (typically instances attached to the public network), so this data source is a read-only view. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const ips = ovh.getCloudExtNetIps({ * serviceName: "", * }); * export const extNetIpAddresses = ips.then(ips => .map(ip => (ip.id))); * ``` */ export declare function getCloudExtNetIpsOutput(args?: GetCloudExtNetIpsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudExtNetIps. */ export interface GetCloudExtNetIpsOutputArgs { /** * Service name of the resource representing the id of the cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName?: pulumi.Input; }