import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to list the floating IPs of a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const ips = ovh.getCloudFloatingIps({ * serviceName: "", * }); * export const floatingIpAddresses = ips.then(ips => .map(ip => (ip.id))); * ``` */ export declare function getCloudFloatingIps(args?: GetCloudFloatingIpsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudFloatingIps. */ export interface GetCloudFloatingIpsArgs { /** * 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 getCloudFloatingIps. */ export interface GetCloudFloatingIpsResult { /** * List of floating IPs. Each element exports: */ readonly floatingIps: outputs.GetCloudFloatingIpsFloatingIp[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly serviceName: string; } /** * Use this data source to list the floating IPs of a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const ips = ovh.getCloudFloatingIps({ * serviceName: "", * }); * export const floatingIpAddresses = ips.then(ips => .map(ip => (ip.id))); * ``` */ export declare function getCloudFloatingIpsOutput(args?: GetCloudFloatingIpsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudFloatingIps. */ export interface GetCloudFloatingIpsOutputArgs { /** * 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; }