import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get the orderable vrack bandwidth information about a dedicated server associated with your OVHcloud Account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const spec = ovh.getDedicatedServerOrderableBandwidthVrack({ * serviceName: "myserver", * }); * ``` */ export declare function getDedicatedServerOrderableBandwidthVrack(args: GetDedicatedServerOrderableBandwidthVrackArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDedicatedServerOrderableBandwidthVrack. */ export interface GetDedicatedServerOrderableBandwidthVrackArgs { /** * The internal name of your dedicated server. */ serviceName: string; } /** * A collection of values returned by getDedicatedServerOrderableBandwidthVrack. */ export interface GetDedicatedServerOrderableBandwidthVrackResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Whether or not additional bandwidth is orderable */ readonly orderable: boolean; readonly serviceName: string; /** * Additional orderable vrack bandwidth */ readonly vracks: number[]; } /** * Use this data source to get the orderable vrack bandwidth information about a dedicated server associated with your OVHcloud Account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const spec = ovh.getDedicatedServerOrderableBandwidthVrack({ * serviceName: "myserver", * }); * ``` */ export declare function getDedicatedServerOrderableBandwidthVrackOutput(args: GetDedicatedServerOrderableBandwidthVrackOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDedicatedServerOrderableBandwidthVrack. */ export interface GetDedicatedServerOrderableBandwidthVrackOutputArgs { /** * The internal name of your dedicated server. */ serviceName: pulumi.Input; }