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

PreservedState

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

Preserved state for a given instance.

interface PreservedState {
disks?: {};
externalIPs?: {};
internalIPs?: {};
metadata?: {
[key: string]: string;
}
;
}

§Properties

§
disks?: {}
[src]

Preserved disks defined for this instance. This map is keyed with the device names of the disks.

§
externalIPs?: {}
[src]

Preserved external IPs defined for this instance. This map is keyed with the name of the network interface.

§
internalIPs?: {}
[src]

Preserved internal IPs defined for this instance. This map is keyed with the name of the network interface.

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

Preserved metadata defined for this instance.