import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to list all public IPs (additional, external network and floating IPs) of a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const all = ovh.getCloudPublicIps({ * serviceName: "", * }); * export const publicIps = all.then(all => all.publicIps); * ``` */ export declare function getCloudPublicIps(args?: GetCloudPublicIpsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudPublicIps. */ export interface GetCloudPublicIpsArgs { /** * 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 getCloudPublicIps. */ export interface GetCloudPublicIpsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of public IPs of the project. Each element exports: */ readonly publicIps: outputs.GetCloudPublicIpsPublicIp[]; readonly serviceName: string; } /** * Use this data source to list all public IPs (additional, external network and floating IPs) of a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const all = ovh.getCloudPublicIps({ * serviceName: "", * }); * export const publicIps = all.then(all => all.publicIps); * ``` */ export declare function getCloudPublicIpsOutput(args?: GetCloudPublicIpsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudPublicIps. */ export interface GetCloudPublicIpsOutputArgs { /** * 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; }