interface Partition {
    capacity: number;
    connectors: string[];
    fileSystem: PartitionFileSystem;
    mountPoint?: string;
    raidLevel: RaidArrayRaidLevel;
    type: PartitionType;
}

Properties

capacity: number

Capacity of the partition.

connectors: string[]

Connectors of the partition.

File system of the partition.

mountPoint?: string

Mount point of the partition.

Raid level of the partition.

Type of the partition.