import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to list the private networks (vRack) of a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const networks = ovh.getCloudNetworkPrivateVracks({ * serviceName: "", * }); * export const networkNames = networks.then(networks => .map(n => (n.name))); * ``` */ export declare function getCloudNetworkPrivateVracks(args: GetCloudNetworkPrivateVracksArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudNetworkPrivateVracks. */ export interface GetCloudNetworkPrivateVracksArgs { /** * Service name of the resource representing the id of the cloud project. */ serviceName: string; } /** * A collection of values returned by getCloudNetworkPrivateVracks. */ export interface GetCloudNetworkPrivateVracksResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of private networks. Each element exports: */ readonly networks: outputs.GetCloudNetworkPrivateVracksNetwork[]; readonly serviceName: string; } /** * Use this data source to list the private networks (vRack) of a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const networks = ovh.getCloudNetworkPrivateVracks({ * serviceName: "", * }); * export const networkNames = networks.then(networks => .map(n => (n.name))); * ``` */ export declare function getCloudNetworkPrivateVracksOutput(args: GetCloudNetworkPrivateVracksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudNetworkPrivateVracks. */ export interface GetCloudNetworkPrivateVracksOutputArgs { /** * Service name of the resource representing the id of the cloud project. */ serviceName: pulumi.Input; }