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

Package

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

Packages are named collections of versions.

interface Package {
annotations?: {
[key: string]: string;
}
;
createTime?: Date;
displayName?: string;
name?: string;
updateTime?: Date;
}

§Properties

§
annotations?: {
[key: string]: string;
}
[src]

Optional. Client specified annotations.

§
createTime?: Date
[src]

The time when the package was created.

§
displayName?: string
[src]

The display name of the package.

§
name?: string
[src]

The name of the package, for example: projects/p1/locations/us-central1/repositories/repo1/packages/pkg1. If the package ID part contains slashes, the slashes are escaped.

§
updateTime?: Date
[src]

The time when the package was last updated. This includes publishing a new version of the package.