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

ImageManifest

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

Details of a single image manifest within a multi-arch image.

interface ImageManifest {
architecture?: string;
digest?: string;
mediaType?: string;
os?: string;
osFeatures?: string[];
osVersion?: string;
variant?: string;
}

§Properties

§
architecture?: string
[src]

Optional. The CPU architecture of the image. Values are provided by the Docker client and are not validated by Artifact Registry. Example values include "amd64", "arm64", "ppc64le", "s390x", "riscv64", "mips64le", etc.

§
digest?: string
[src]

Optional. The manifest digest, in the format "sha256:".

§
mediaType?: string
[src]

Optional. The media type of the manifest, e.g., "application/vnd.docker.distribution.manifest.v2+json"

§
os?: string
[src]

Optional. The operating system of the image. Values are provided by the Docker client and are not validated by Artifact Registry. Example values include "linux", "windows", "darwin", "aix", etc.

§
osFeatures?: string[]
[src]

Optional. The required OS features for the image, for example on Windows win32k.

§
osVersion?: string
[src]

Optional. The OS version of the image, for example on Windows 10.0.14393.1066.

§
variant?: string
[src]

Optional. The variant of the CPU in the image, for example v7 to specify ARMv7 when architecture is arm.