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

UpgradeHistoryEntry

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

The entry of VM image upgrade history.

interface UpgradeHistoryEntry {
action?: "ACTION_UNSPECIFIED" | "UPGRADE" | "ROLLBACK";
containerImage?: string;
createTime?: Date;
framework?: string;
snapshot?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "STARTED"
| "SUCCEEDED"
| "FAILED";
targetVersion?: string;
version?: string;
vmImage?: string;
}

§Properties

§
action?: "ACTION_UNSPECIFIED" | "UPGRADE" | "ROLLBACK"
[src]

Optional. Action. Rolloback or Upgrade.

§
containerImage?: string
[src]

Optional. The container image before this instance upgrade.

§
createTime?: Date
[src]

Immutable. The time that this instance upgrade history entry is created.

§
framework?: string
[src]

Optional. The framework of this notebook instance.

§
snapshot?: string
[src]

Optional. The snapshot of the boot disk of this notebook instance before upgrade.

§
readonly state?: "STATE_UNSPECIFIED" | "STARTED" | "SUCCEEDED" | "FAILED"
[src]

Output only. The state of this instance upgrade history entry.

§
targetVersion?: string
[src]

Optional. Target VM Version, like m63.

§
version?: string
[src]

Optional. The version of the notebook instance before this upgrade.

§
vmImage?: string
[src]

Optional. The VM image before this instance upgrade.