Module Values.BatchCheckLayerAvailabilityResponseSource

Checks the availability of one or more image layers that are within a repository in a public registry. When an image is pushed to a repository, each image layer is checked to verify if it has been uploaded before. If it has been uploaded, then the image layer is skipped. This operation is used by the Amazon ECR proxy and is not generally used by customers for pulling and pushing images. In most cases, you should use the docker CLI to pull, tag, and push images.

Sourcetype nonrec t = {
  1. layers : LayerList.t option;
    (*

    A list of image layer objects that correspond to the image layer references in the request.

    *)
  2. failures : LayerFailureList.t option;
    (*

    Any failures associated with the call.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidParameterException of InvalidParameterException.t
  2. | `RegistryNotFoundException of RegistryNotFoundException.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 : ?layers:??? -> ?failures:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidParameterException of InvalidParameterException.t | `RegistryNotFoundException of RegistryNotFoundException.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 -> [> `InvalidParameterException of InvalidParameterException.t | `RegistryNotFoundException of RegistryNotFoundException.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 * [> `Enum of string | `Long of LayerSizeInBytes.t | `String of LayerDigest.t ]) list ] list ]) 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