Module Values.ImageDetailSource

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

Sourcetype nonrec t = {
  1. registryId : RegistryId.t option;
    (*

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

    *)
  2. repositoryName : RepositoryName.t option;
    (*

    The name of the repository where this image belongs.

    *)
  3. imageDigest : ImageDigest.t option;
    (*

    The sha256 digest of the image manifest.

    *)
  4. imageTags : ImageTagList.t option;
    (*

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

    *)
  5. 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.

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

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

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

    The media type of the image manifest.

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

    The artifact media type of the image.

    *)
}
Sourceval make : ?registryId:??? -> ?repositoryName:??? -> ?imageDigest:??? -> ?imageTags:??? -> ?imageSizeInBytes:??? -> ?imagePushedAt:??? -> ?imageManifestMediaType:??? -> ?artifactMediaType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ImageTag.t ] list | `Long of ImageSizeInBytes.t | `String of RegistryId.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