import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get the list of orderable additional bandwidth for 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.getDedicatedServerOrderableBandwidth({ * serviceName: "myserver", * }); * ``` */ export declare function getDedicatedServerOrderableBandwidth(args: GetDedicatedServerOrderableBandwidthArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDedicatedServerOrderableBandwidth. */ export interface GetDedicatedServerOrderableBandwidthArgs { /** * The internal name of your dedicated server. */ serviceName: string; } /** * A collection of values returned by getDedicatedServerOrderableBandwidth. */ export interface GetDedicatedServerOrderableBandwidthResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Whether or not additional bandwidth is orderable */ readonly orderable: boolean; /** * Additional orderable platinium bandwidth */ readonly platinia: number[]; /** * Additional orderable premium bandwidth */ readonly premia: number[]; readonly serviceName: string; /** * Additional orderable ultimate bandwidth */ readonly ultimates: number[]; } /** * Use this data source to get the list of orderable additional bandwidth for 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.getDedicatedServerOrderableBandwidth({ * serviceName: "myserver", * }); * ``` */ export declare function getDedicatedServerOrderableBandwidthOutput(args: GetDedicatedServerOrderableBandwidthOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDedicatedServerOrderableBandwidth. */ export interface GetDedicatedServerOrderableBandwidthOutputArgs { /** * The internal name of your dedicated server. */ serviceName: pulumi.Input; }