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

AptArtifact

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

A detailed representation of an Apt artifact. Information in the record is derived from the archive's control file. See https://www.debian.org/doc/debian-policy/ch-controlfields.html

interface AptArtifact {
readonly architecture?: string;
readonly component?: string;
readonly controlFile?: Uint8Array;
readonly name?: string;
readonly packageName?: string;
readonly packageType?: "PACKAGE_TYPE_UNSPECIFIED" | "BINARY" | "SOURCE";
}

§Properties

§
readonly architecture?: string
[src]

Output only. Operating system architecture of the artifact.

§
readonly component?: string
[src]

Output only. Repository component of the artifact.

§
readonly controlFile?: Uint8Array
[src]

Output only. Contents of the artifact's control metadata file.

§
readonly name?: string
[src]

Output only. The Artifact Registry resource name of the artifact.

§
readonly packageName?: string
[src]

Output only. The Apt package name of the artifact.

§
readonly packageType?: "PACKAGE_TYPE_UNSPECIFIED" | "BINARY" | "SOURCE"
[src]

Output only. An artifact is a binary or source package.