interface VDevDisk {
    capacity: string;
    guid: string;
    health: string;
    model: string;
    name: string;
    path: string;
    phy_path: string;
    powerOnCount: string;
    powerOnHours: number;
    rotationRate: number;
    sd_path: string;
    serial: string;
    stats: Record<string, any>;
    temp: string;
    type: "SSD" | "HDD" | "NVMe";
    vdev_path: string;
}

Hierarchy-Diagram

UML class diagram of VDevDisk
Legend
icon for an interface in the UML class diagram interface
icon for a public property in the UML class diagram public property

Hierarchy (view full)

Properties

capacity: string
guid: string
health: string
model: string
name: string
path: string
phy_path: string
powerOnCount: string
powerOnHours: number
rotationRate: number
sd_path: string
serial: string
stats: Record<string, any>
temp: string
type: "SSD" | "HDD" | "NVMe"
vdev_path: string