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.
§
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.