import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get the linked vrack on your public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * export = async () => { * const vrack = await ovh.CloudProject.getVRack({ * serviceName: "XXXXXX", * }); * return { * vrack: vrack, * }; * } * ``` */ export declare function getVRack(args: GetVRackArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVRack. */ export interface GetVRackArgs { /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName: string; } /** * A collection of values returned by getVRack. */ export interface GetVRackResult { readonly description: string; /** * The id of the vrack */ readonly id: string; /** * The name of the vrack */ readonly name: string; /** * The id of the public cloud project */ readonly serviceName: string; } /** * Use this data source to get the linked vrack on your public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * export = async () => { * const vrack = await ovh.CloudProject.getVRack({ * serviceName: "XXXXXX", * }); * return { * vrack: vrack, * }; * } * ``` */ export declare function getVRackOutput(args: GetVRackOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVRack. */ export interface GetVRackOutputArgs { /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName: pulumi.Input; }