import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to get Vrack information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const myVrack = ovh.getVrack({ * serviceName: "pn-000000", * }); * ``` */ export declare function getVrack(args: GetVrackArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVrack. */ export interface GetVrackArgs { /** * The vrack service name for your OVHcloud account, e.g pn-000000. */ serviceName: string; } /** * A collection of values returned by getVrack. */ export interface GetVrackResult { /** * The vrack description */ readonly description: string; /** * (Attributes) IAM resource metadata (see below for nested schema) */ readonly iam: outputs.GetVrackIam; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The name defined for the vrack */ readonly name: string; /** * The vrack service name for your OVHcloud account, e.g pn-000000. */ readonly serviceName: string; } /** * Use this data source to get Vrack information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const myVrack = ovh.getVrack({ * serviceName: "pn-000000", * }); * ``` */ export declare function getVrackOutput(args: GetVrackOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVrack. */ export interface GetVrackOutputArgs { /** * The vrack service name for your OVHcloud account, e.g pn-000000. */ serviceName: pulumi.Input; }