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

SavedDisk

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

An instance-attached disk resource.

interface SavedDisk {
architecture?: "ARCHITECTURE_UNSPECIFIED" | "ARM64" | "X86_64";
kind?: string;
sourceDisk?: string;
storageBytes?: bigint;
storageBytesStatus?: "UPDATING" | "UP_TO_DATE";
}

§Properties

§
architecture?: "ARCHITECTURE_UNSPECIFIED" | "ARM64" | "X86_64"
[src]

[Output Only] The architecture of the attached disk.

§
kind?: string
[src]

[Output Only] Type of the resource. Always compute#savedDisk for attached disks.

§
sourceDisk?: string
[src]

Specifies a URL of the disk attached to the source instance.

§
storageBytes?: bigint
[src]

[Output Only] Size of the individual disk snapshot used by this machine image.

§
storageBytesStatus?: "UPDATING" | "UP_TO_DATE"
[src]

[Output Only] An indicator whether storageBytes is in a stable state or it is being adjusted as a result of shared storage reallocation. This status can either be UPDATING, meaning the size of the snapshot is being updated, or UP_TO_DATE, meaning the size of the snapshot is up-to-date.