import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Retrieve the IP subnet used by OVHcloud IPLB to contact your backends. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const iplb = ovh.getIploadbalancingNatIps({ * serviceName: "iplb-example-1", * }); * ``` */ export declare function getIploadbalancingNatIps(args: GetIploadbalancingNatIpsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIploadbalancingNatIps. */ export interface GetIploadbalancingNatIpsArgs { /** * The service name of your IP load balancing */ serviceName: string; } /** * A collection of values returned by getIploadbalancingNatIps. */ export interface GetIploadbalancingNatIpsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly natIps: outputs.GetIploadbalancingNatIpsNatIp[]; /** * The service name of your IP load balancing */ readonly serviceName: string; } /** * Retrieve the IP subnet used by OVHcloud IPLB to contact your backends. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const iplb = ovh.getIploadbalancingNatIps({ * serviceName: "iplb-example-1", * }); * ``` */ export declare function getIploadbalancingNatIpsOutput(args: GetIploadbalancingNatIpsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIploadbalancingNatIps. */ export interface GetIploadbalancingNatIpsOutputArgs { /** * The service name of your IP load balancing */ serviceName: pulumi.Input; }