UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 588 B
import { UnitAndValueLong } from '../../complexType/UnitAndValueLong'; import { UnitAndValueString } from '../../complexType/UnitAndValueString'; import { DiskTypeEnum } from './DiskTypeEnum'; /** Disk attached to a RAID controller */ export interface HardwareRaidDiskGroup { /** Disk capacity */ capacity: UnitAndValueLong; /** Disk Group Id */ diskGroupId: number; /** Disk names */ names: string[]; /** Disk insterface speed */ speed: UnitAndValueString; /** Disk type */ type: DiskTypeEnum; } //# sourceMappingURL=HardwareRaidDiskGroup.d.ts.map