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

UpgradeStatus

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

UpgradeStatus contains information about upgradeAppliance operation.

interface UpgradeStatus {
error?: Status;
previousVersion?: string;
startTime?: Date;
state?:
| "STATE_UNSPECIFIED"
| "RUNNING"
| "FAILED"
| "SUCCEEDED";
version?: string;
}

§Properties

§
error?: Status
[src]

Provides details on the state of the upgrade operation in case of an error.

§
previousVersion?: string
[src]

The version from which we upgraded.

§
startTime?: Date
[src]

The time the operation was started.

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

The state of the upgradeAppliance operation.

§
version?: string
[src]

The version to upgrade to.