import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * List public cloud project private networks. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * export = async () => { * const _private = await ovh.CloudProject.getNetworkPrivates({ * serviceName: "XXXXXX", * }); * return { * "private": _private, * }; * } * ``` */ export declare function getNetworkPrivates(args: GetNetworkPrivatesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNetworkPrivates. */ export interface GetNetworkPrivatesArgs { /** * The ID of the public cloud project. */ serviceName: string; } /** * A collection of values returned by getNetworkPrivates. */ export interface GetNetworkPrivatesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of network */ readonly networks: outputs.CloudProject.GetNetworkPrivatesNetwork[]; /** * ID of the public cloud project */ readonly serviceName: string; } /** * List public cloud project private networks. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * export = async () => { * const _private = await ovh.CloudProject.getNetworkPrivates({ * serviceName: "XXXXXX", * }); * return { * "private": _private, * }; * } * ``` */ export declare function getNetworkPrivatesOutput(args: GetNetworkPrivatesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNetworkPrivates. */ export interface GetNetworkPrivatesOutputArgs { /** * The ID of the public cloud project. */ serviceName: pulumi.Input; }