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

ImageVersion

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

ImageVersion information

interface ImageVersion {
creationDisabled?: boolean;
imageVersionId?: string;
isDefault?: boolean;
releaseDate?: Date;
supportedPythonVersions?: string[];
upgradeDisabled?: boolean;
}

§Properties

§
creationDisabled?: boolean
[src]

Whether it is impossible to create an environment with the image version.

§
imageVersionId?: string
[src]

The string identifier of the ImageVersion, in the form: "composer-x.y.z-airflow-a.b.c"

§
isDefault?: boolean
[src]

Whether this is the default ImageVersion used by Composer during environment creation if no input ImageVersion is specified.

§
releaseDate?: Date
[src]

The date of the version release.

§
supportedPythonVersions?: string[]
[src]

supported python versions

§
upgradeDisabled?: boolean
[src]

Whether it is impossible to upgrade an environment running with the image version.