/** *
Describes a disk.
*/ export interface _DiskInfo { /** *The disk name.
*/ name?: string; /** *The disk path.
*/ path?: string; /** *The size of the disk in GB (e.g., 32).
A Boolean value indicating whether this disk is a system disk (has an operating system loaded on it).
*/ isSystemDisk?: boolean; } export declare type _UnmarshalledDiskInfo = _DiskInfo;