@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
20 lines • 755 B
TypeScript
import { UnitAndValueLong } from '../../complexType/UnitAndValueLong';
import { HardwareSpecificationsRaidHardEnum } from './HardwareSpecificationsRaidHardEnum';
/** Simulated result of how the hardware RAID template will be configured on this server */
export interface HardwareRaidConfiguration {
/** RAID total capacity */
capacity: UnitAndValueLong;
/** Disk count */
diskCount: number;
/** Disk capacity */
diskSize: UnitAndValueLong;
/** Size of disk spans on RAID */
diskSpanSize: number;
/** RAID mode */
mode: HardwareSpecificationsRaidHardEnum;
/** RAID configuration name */
name: string;
/** RAID controller type */
type: string;
}
//# sourceMappingURL=HardwareRaidConfiguration.d.ts.map