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

Version

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

The body of a version resource. A version resource represents a collection of components, such as files and other data. This may correspond to a version in many package management schemes.

interface Version {
createTime?: Date;
description?: string;
readonly metadata?: {
[key: string]: any;
}
;
name?: string;
relatedTags?: Tag[];
updateTime?: Date;
}

§Properties

§
createTime?: Date
[src]

The time when the version was created.

§
description?: string
[src]

Optional. Description of the version, as specified in its metadata.

§
readonly metadata?: {
[key: string]: any;
}
[src]

Output only. Repository-specific Metadata stored against this version. The fields returned are defined by the underlying repository-specific resource. Currently, the resources could be: DockerImage MavenArtifact

§
name?: string
[src]

The name of the version, for example: "projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/versions/art1". If the package or version ID parts contain slashes, the slashes are escaped.

§
relatedTags?: Tag[]
[src]

Output only. A list of related tags. Will contain up to 100 tags that reference this version.

§
updateTime?: Date
[src]

The time when the version was last updated.