Module Values.DescribeImagesResponseSource

Returns metadata that's related to the images in a repository in a public registry. 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. Therefore, it might return a larger image size than the image sizes that are returned by DescribeImages.

Sourcetype nonrec t = {
  1. imageDetails : ImageDetailList.t option;
    (*

    A list of ImageDetail objects that contain data about the image.

    *)
  2. nextToken : NextToken.t option;
    (*

    The nextToken value to include in a future DescribeImages request. When the results of a DescribeImages request exceed maxResults, you can use this value to retrieve the next page of results. If there are no more results to return, this value is null.

    *)
}
Sourcetype nonrec error = [
  1. | `ImageNotFoundException of ImageNotFoundException.t
  2. | `InvalidParameterException of InvalidParameterException.t
  3. | `RepositoryNotFoundException of RepositoryNotFoundException.t
  4. | `ServerException of ServerException.t
  5. | `UnsupportedCommandException of UnsupportedCommandException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?imageDetails:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ImageNotFoundException of ImageNotFoundException.t | `InvalidParameterException of InvalidParameterException.t | `RepositoryNotFoundException of RepositoryNotFoundException.t | `ServerException of ServerException.t | `Unknown_operation_error of string * string option | `UnsupportedCommandException of UnsupportedCommandException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ImageNotFoundException of ImageNotFoundException.t | `InvalidParameterException of InvalidParameterException.t | `RepositoryNotFoundException of RepositoryNotFoundException.t | `ServerException of ServerException.t | `Unknown_operation_error of string * string option | `UnsupportedCommandException of UnsupportedCommandException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of ImageTag.t ] list | `Long of ImageSizeInBytes.t | `String of RegistryId.t | `Timestamp of PushTimestamp.t ]) list ] list | `String of NextToken.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