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

AttachedDisk

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

A new or an existing persistent disk (PD) or a local ssd attached to a VM instance.

interface AttachedDisk {
deviceName?: string;
existingDisk?: string;
newDisk?: Disk;
}

§Properties

§
deviceName?: string
[src]

Device name that the guest operating system will see. It is used by Runnable.volumes field to mount disks. So please specify the device_name if you want Batch to help mount the disk, and it should match the device_name field in volumes.

§
existingDisk?: string
[src]

Name of an existing PD.

§
newDisk?: Disk
[src]