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

Artifact

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

Artifact describes a build product.

interface Artifact {
checksum?: string;
id?: string;
names?: string[];
}

§Properties

§
checksum?: string
[src]

Hash or checksum value of a binary, or Docker Registry 2.0 digest of a container.

§
id?: string
[src]

Artifact ID, if any; for container images, this will be a URL by digest like gcr.io/projectID/imagename@sha256:123456.

§
names?: string[]
[src]

Related artifact names. This may be the path to a binary or jar file, or in the case of a container build, the name used to push the container image to Google Container Registry, as presented to docker push. Note that a single Artifact ID can have multiple names, for example if two tags are applied to one image.