Module Values.ReferencedImageDetailSource

An object that describes the image tag details that are returned by a DescribeImageTags action.

Sourcetype nonrec t = {
  1. imageDigest : ImageDigest.t option;
    (*

    The sha256 digest of the image manifest.

    *)
  2. imageSizeInBytes : ImageSizeInBytes.t option;
    (*

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

    *)
  3. imagePushedAt : PushTimestamp.t option;
    (*

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

    *)
  4. imageManifestMediaType : MediaType.t option;
    (*

    The media type of the image manifest.

    *)
  5. artifactMediaType : MediaType.t option;
    (*

    The artifact media type of the image.

    *)
}
Sourceval make : ?imageDigest:??? -> ?imageSizeInBytes:??? -> ?imagePushedAt:??? -> ?imageManifestMediaType:??? -> ?artifactMediaType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of ImageSizeInBytes.t | `String of ImageDigest.t | `Timestamp of PushTimestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t