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

DataDiskAssignment

import type { DataDiskAssignment } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

Data disk assignment for a given VM instance.

interface DataDiskAssignment {
dataDisks?: string[];
vmInstance?: string;
}

§Properties

§
dataDisks?: string[]
[src]

Mounted data disks. The order is important a data disk's 0-based index in this list defines which persistent directory the disk is mounted to, for example the list of { "myproject-1014-104817-4c2-harness-0-disk-0" }, { "myproject-1014-104817-4c2-harness-0-disk-1" }.

§
vmInstance?: string
[src]

VM instance name the data disks mounted to, for example "myproject-1014-104817-4c2-harness-0".