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

ImageOccurrence

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

Details of the derived image portion of the DockerImage relationship. This image would be produced from a Dockerfile with FROM .

interface ImageOccurrence {
baseResourceUrl?: string;
distance?: number;
fingerprint?: Fingerprint;
layerInfo?: Layer[];
}

§Properties

§
baseResourceUrl?: string
[src]

Output only. This contains the base image URL for the derived image occurrence.

§
distance?: number
[src]

Output only. The number of layers by which this image differs from the associated image basis.

§
fingerprint?: Fingerprint
[src]

Required. The fingerprint of the derived image.

§
layerInfo?: Layer[]
[src]

This contains layer-specific metadata, if populated it has length "distance" and is ordered with [distance] being the layer immediately following the base image and [1] being the final layer.