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

Source

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

Source describes the location of the source used for the build.

interface Source {
additionalContexts?: SourceContext[];
artifactStorageSourceUri?: string;
context?: SourceContext;
fileHashes?: {
[key: string]: FileHashes;
}
;
}

§Properties

§
additionalContexts?: SourceContext[]
[src]

If provided, some of the source code used for the build may be found in these locations, in the case where the source repository had multiple remotes or submodules. This list will not include the context specified in the context field.

§
artifactStorageSourceUri?: string
[src]

If provided, the input binary artifacts for the build came from this location.

§

If provided, the source code used for the build came from this location.

§
fileHashes?: {
[key: string]: FileHashes;
}
[src]

Hash(es) of the build source, which can be used to verify that the original source integrity was maintained in the build. The keys to this map are file paths used as build source and the values contain the hash values for those files. If the build source came in a single package such as a gzipped tarfile (.tar.gz), the FileHash will be for the single path to that file.