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

LayerDetails

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

Details about the layer a package was found in.

interface LayerDetails {
baseImages?: BaseImage[];
chainId?: string;
command?: string;
diffId?: string;
index?: number;
}

§Properties

§
baseImages?: BaseImage[]
[src]

The base images the layer is found within.

§
chainId?: string
[src]

The layer chain ID (sha256 hash) of the layer in the container image. https://github.com/opencontainers/image-spec/blob/main/config.md#layer-chainid

§
command?: string
[src]

The layer build command that was used to build the layer. This may not be found in all layers depending on how the container image is built.

§
diffId?: string
[src]

The diff ID (sha256 hash) of the layer in the container image.

§
index?: number
[src]

The index of the layer in the container image.