import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to get the hardward 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.Dedicated.getServerSpecificationsHardware({ * serviceName: "myserver", * }); * ``` */ export declare function getServerSpecificationsHardware(args: GetServerSpecificationsHardwareArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getServerSpecificationsHardware. */ export interface GetServerSpecificationsHardwareArgs { /** * The internal name of your dedicated server. */ serviceName: string; } /** * A collection of values returned by getServerSpecificationsHardware. */ export interface GetServerSpecificationsHardwareResult { /** * Server boot mode */ readonly bootMode: string; /** * Number of cores per processor */ readonly coresPerProcessor: number; /** * Default hardware raid size for this disk group */ readonly defaultHardwareRaidSize: outputs.Dedicated.GetServerSpecificationsHardwareDefaultHardwareRaidSize; /** * Default hardware raid type for this disk group */ readonly defaultHardwareRaidType: string; /** * Expansion card description */ readonly description: string; /** * Details about the groups of disks in the server */ readonly diskGroups: outputs.Dedicated.GetServerSpecificationsHardwareDiskGroup[]; /** * Details about the server's expansion cards */ readonly expansionCards: outputs.Dedicated.GetServerSpecificationsHardwareExpansionCard[]; /** * Server form factor */ readonly formFactor: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * RAM capacity */ readonly memorySize: outputs.Dedicated.GetServerSpecificationsHardwareMemorySize; /** * Server motherboard */ readonly motherboard: string; /** * Number of processors in this dedicated server */ readonly numberOfProcessors: number; /** * Processor architecture bit */ readonly processorArchitecture: string; /** * Processor name */ readonly processorName: string; readonly serviceName: string; /** * Number of threads per processor */ readonly threadsPerProcessor: number; /** * Capacity of the USB keys installed on your server, if any */ readonly usbKeys: outputs.Dedicated.GetServerSpecificationsHardwareUsbKey[]; } /** * Use this data source to get the hardward 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.Dedicated.getServerSpecificationsHardware({ * serviceName: "myserver", * }); * ``` */ export declare function getServerSpecificationsHardwareOutput(args: GetServerSpecificationsHardwareOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getServerSpecificationsHardware. */ export interface GetServerSpecificationsHardwareOutputArgs { /** * The internal name of your dedicated server. */ serviceName: pulumi.Input; }