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

Fingerprint

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

A set of properties that uniquely identify a given Docker image.

interface Fingerprint {
v1Name?: string;
v2Blob?: string[];
v2Name?: string;
}

§Properties

§
v1Name?: string
[src]

Required. The layer ID of the final layer in the Docker image's v1 representation.

§
v2Blob?: string[]
[src]

Required. The ordered list of v2 blobs that represent a given image.

§
v2Name?: string
[src]

Output only. The name of the image's v2 blobs computed via: [bottom] := v2_blobbottom := sha256(v2_blob[N] + " " + v2_name[N+1]) Only the name of the final blob is kept.