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 {
readonly architecture?: "ARCHITECTURE_UNSPECIFIED" | "ARM64" | "X86_64";
readonly kind?: string;
readonly sourceDisk?: string;
readonly storageBytes?: bigint;
readonly storageBytesStatus?: "UPDATING" | "UP_TO_DATE";
}

§Properties

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

Output only. [Output Only] The architecture of the attached disk.

§
readonly kind?: string
[src]

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

§
readonly sourceDisk?: string
[src]

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

§
readonly storageBytes?: bigint
[src]

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

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

Output only. [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.