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

ImageDetail

import type { ImageDetail } from "https://aws-api.deno.dev/v0.4/services/ecrpublic.ts?docs=full";

An object that describes an image that's returned by a "DescribeImages" operation.

interface ImageDetail {
artifactMediaType?: string | null;
imageDigest?: string | null;
imageManifestMediaType?: string | null;
imagePushedAt?: Date | number | null;
imageSizeInBytes?: number | null;
imageTags?: string[] | null;
registryId?: string | null;
repositoryName?: string | null;
}

§Properties

§
artifactMediaType?: string | null
[src]

The artifact media type of the image.

§
imageDigest?: string | null
[src]

The sha256 digest of the image manifest.

§
imageManifestMediaType?: string | null
[src]

The media type of the image manifest.

§
imagePushedAt?: Date | number | null
[src]

The date and time, expressed in standard JavaScript date format, that the current image was pushed to the repository at.

§
imageSizeInBytes?: number | null
[src]

The size, in bytes, of the image in the repository.

If the image is a manifest list, this is the max size of all manifests in the list.

Note: Beginning with Docker version 1.9, the Docker client compresses image layers before pushing them to a V2 Docker registry. The output of the docker images command shows the uncompressed image size, so it might return a larger image size than the image sizes that are returned by "DescribeImages".

§
imageTags?: string[] | null
[src]

The list of tags that's associated with this image.

§
registryId?: string | null
[src]

The Amazon Web Services account ID that's associated with the public registry where this image belongs.

§
repositoryName?: string | null
[src]

The name of the repository where this image belongs.