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