UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

22 lines 1 kB
import { UnitAndValueLong } from '../../complexType/UnitAndValueLong'; import { HardwareSpecificationsRaidHardEnum } from './HardwareSpecificationsRaidHardEnum'; /** A structure describing informations about server disks */ export interface HardwareSpecificationsDisk { /** default hardware raid size for this disk group */ defaultHardwareRaidSize?: UnitAndValueLong; /** default hardware raid type for this disk group */ defaultHardwareRaidType?: HardwareSpecificationsRaidHardEnum; /** human readable description of this disk group */ description?: string; /** identifier of this disk group */ diskGroupId?: number; /** disk capacity */ diskSize?: UnitAndValueLong; /** type of the disk (SSD, SATA, SAS, ...) */ diskType?: string; /** number of disks in this group */ numberOfDisks?: number; /** raid controller, if any, managing this group of disks */ raidController?: string; } //# sourceMappingURL=HardwareSpecificationsDisk.d.ts.map