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

DisksMigrationVmTargetDefaults

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

Details for creation of a VM that migrated data disks will be attached to.

interface DisksMigrationVmTargetDefaults {
additionalLicenses?: string[];
bootDiskDefaults?: BootDiskDefaults;
computeScheduling?: ComputeScheduling;
encryption?: Encryption;
hostname?: string;
labels?: {
[key: string]: string;
}
;
machineType?: string;
machineTypeSeries?: string;
metadata?: {
[key: string]: string;
}
;
networkInterfaces?: NetworkInterface[];
networkTags?: string[];
secureBoot?: boolean;
serviceAccount?: string;
vmName?: string;
}

§Properties

§
additionalLicenses?: string[]
[src]

Optional. Additional licenses to assign to the VM.

§
bootDiskDefaults?: BootDiskDefaults
[src]

Optional. Details of the boot disk of the VM.

§
computeScheduling?: ComputeScheduling
[src]

Optional. Compute instance scheduling information (if empty default is used).

§
encryption?: Encryption
[src]

Optional. The encryption to apply to the VM.

§
hostname?: string
[src]

Optional. The hostname to assign to the VM.

§
labels?: {
[key: string]: string;
}
[src]

Optional. A map of labels to associate with the VM.

§
machineType?: string
[src]

Required. The machine type to create the VM with.

§
machineTypeSeries?: string
[src]

Optional. The machine type series to create the VM with. For presentation only.

§
metadata?: {
[key: string]: string;
}
[src]

Optional. The metadata key/value pairs to assign to the VM.

§
networkInterfaces?: NetworkInterface[]
[src]

Optional. NICs to attach to the VM.

§
networkTags?: string[]
[src]

Optional. A list of network tags to associate with the VM.

§
secureBoot?: boolean
[src]

Optional. Defines whether the instance has Secure Boot enabled. This can be set to true only if the VM boot option is EFI.

§
serviceAccount?: string
[src]

Optional. The service account to associate the VM with.

§
vmName?: string
[src]

Required. The name of the VM to create.