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

CheckInstanceUpgradabilityResponse

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

Response for checking if a notebook instance is upgradeable.

interface CheckInstanceUpgradabilityResponse {
upgradeable?: boolean;
upgradeImage?: string;
upgradeInfo?: string;
upgradeVersion?: string;
}

§Properties

§
upgradeable?: boolean
[src]

If an instance is upgradeable.

§
upgradeImage?: string
[src]

The new image self link this instance will be upgraded to if calling the upgrade endpoint. This field will only be populated if field upgradeable is true.

§
upgradeInfo?: string
[src]

Additional information about upgrade.

§
upgradeVersion?: string
[src]

The version this instance will be upgraded to if calling the upgrade endpoint. This field will only be populated if field upgradeable is true.