import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get the details of a public cloud project private network. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * export = async () => { * const _private = await ovh.CloudProject.getNetworkPrivate({ * serviceName: "XXXXXX", * networkId: "XXX", * }); * return { * "private": _private, * }; * } * ``` */ export declare function getNetworkPrivate(args: GetNetworkPrivateArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNetworkPrivate. */ export interface GetNetworkPrivateArgs { /** * ID of the network */ networkId: string; /** * The ID of the public cloud project. */ serviceName: string; } /** * A collection of values returned by getNetworkPrivate. */ export interface GetNetworkPrivateResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Name of the network */ readonly name: string; /** * ID of the network */ readonly networkId: string; /** * Information about the private network in the openstack region */ readonly regions: outputs.CloudProject.GetNetworkPrivateRegion[]; /** * A map with region name as key, and region-specific openstack id as value */ readonly regionsOpenstackIds: { [key: string]: string; }; /** * ID of the public cloud project */ readonly serviceName: string; /** * Status of the network */ readonly status: string; /** * Type of the network */ readonly type: string; /** * VLAN ID of the network */ readonly vlanId: number; } /** * Get the details of a public cloud project private network. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * export = async () => { * const _private = await ovh.CloudProject.getNetworkPrivate({ * serviceName: "XXXXXX", * networkId: "XXX", * }); * return { * "private": _private, * }; * } * ``` */ export declare function getNetworkPrivateOutput(args: GetNetworkPrivateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNetworkPrivate. */ export interface GetNetworkPrivateOutputArgs { /** * ID of the network */ networkId: pulumi.Input; /** * The ID of the public cloud project. */ serviceName: pulumi.Input; }