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

PythonPackage

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

PythonPackage represents a python artifact.

interface PythonPackage {
readonly createTime?: Date;
name?: string;
packageName?: string;
readonly updateTime?: Date;
uri?: string;
version?: string;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Time the package was created.

§
name?: string
[src]

Required. registry_location, project_id, repository_name and python_package forms a unique package name:projects//locations//repository//pythonPackages/. For example, "projects/test-project/locations/us-west4/repositories/test-repo/pythonPackages/ python_package:1.0.0", where "us-west4" is the registry_location, "test-project" is the project_id, "test-repo" is the repository_name and python_package:1.0.0" is the python package.

§
packageName?: string
[src]

Package for the artifact.

§
readonly updateTime?: Date
[src]

Output only. Time the package was updated.

§
uri?: string
[src]

Required. URL to access the package. Example: us-west4-python.pkg.dev/test-project/test-repo/python_package/file-name-1.0.0.tar.gz

§
version?: string
[src]

Version of this package.