Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DiskEntry

import type { DiskEntry } from "https://googleapis.deno.dev/v1/migrationcenter:v1.ts";

Single disk entry.

interface DiskEntry {
capacityBytes?: bigint;
diskLabel?: string;
diskLabelType?: string;
freeBytes?: bigint;
hwAddress?: string;
interfaceType?:
| "INTERFACE_TYPE_UNSPECIFIED"
| "IDE"
| "SATA"
| "SAS"
| "SCSI"
| "NVME"
| "FC"
| "ISCSI";
partitions?: DiskPartitionList;
}

§Properties

§
capacityBytes?: bigint
[src]

Disk capacity.

§
diskLabel?: string
[src]

Disk label.

§
diskLabelType?: string
[src]

Disk label type (e.g. BIOS/GPT)

§
freeBytes?: bigint
[src]

Disk free space.

§
hwAddress?: string
[src]

Disk hardware address (e.g. 0:1 for SCSI).

§
interfaceType?: "INTERFACE_TYPE_UNSPECIFIED" | "IDE" | "SATA" | "SAS" | "SCSI" | "NVME" | "FC" | "ISCSI"
[src]

Disks interface type.

§

Partition layout.

§

VMware disk details.