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

DataDisk

import type { DataDisk } from "https://googleapis.deno.dev/v1/notebooks:v2.ts";

An instance-attached disk resource.

interface DataDisk {
diskEncryption?: "DISK_ENCRYPTION_UNSPECIFIED" | "GMEK" | "CMEK";
diskSizeGb?: bigint;
diskType?:
| "DISK_TYPE_UNSPECIFIED"
| "PD_STANDARD"
| "PD_SSD"
| "PD_BALANCED"
| "PD_EXTREME";
kmsKey?: string;
}

§Properties

§
diskEncryption?: "DISK_ENCRYPTION_UNSPECIFIED" | "GMEK" | "CMEK"
[src]

Optional. Input only. Disk encryption method used on the boot and data disks, defaults to GMEK.

§
diskSizeGb?: bigint
[src]

Optional. The size of the disk in GB attached to this VM instance, up to a maximum of 64000 GB (64 TB). If not specified, this defaults to 100.

§
diskType?: "DISK_TYPE_UNSPECIFIED" | "PD_STANDARD" | "PD_SSD" | "PD_BALANCED" | "PD_EXTREME"
[src]

Optional. Input only. Indicates the type of the disk.

§
kmsKey?: string
[src]

Optional. Input only. The KMS key used to encrypt the disks, only applicable if disk_encryption is CMEK. Format: projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys/{key_id} Learn more about using your own encryption keys.