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

VolumeSnapshot

import type { VolumeSnapshot } from "https://googleapis.deno.dev/v1/baremetalsolution:v2.ts";

A snapshot of a volume. Only boot volumes can have snapshots.

interface VolumeSnapshot {
readonly createTime?: Date;
description?: string;
readonly id?: string;
name?: string;
readonly storageVolume?: string;
readonly type?: "SNAPSHOT_TYPE_UNSPECIFIED" | "AD_HOC" | "SCHEDULED";
}

§Properties

§
readonly createTime?: Date
[src]

Output only. The creation time of the snapshot.

§
description?: string
[src]

The description of the snapshot.

§
readonly id?: string
[src]

Output only. An identifier for the snapshot, generated by the backend.

§
name?: string
[src]

The name of the snapshot.

§
readonly storageVolume?: string
[src]

Output only. The name of the volume which this snapshot belongs to.

§
readonly type?: "SNAPSHOT_TYPE_UNSPECIFIED" | "AD_HOC" | "SCHEDULED"
[src]

Output only. The type of the snapshot which indicates whether it was scheduled or manual/ad-hoc.