Module Values.BatchCheckLayerAvailabilityRequestSource

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. registryId : RegistryIdOrAlias.t option;
    (*

    The Amazon Web Services account ID, or registry alias, associated with the public registry that contains the image layers to check. If you do not specify a registry, the default public registry is assumed.

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

    The name of the repository that's associated with the image layers to check.

    *)
  3. layerDigests : BatchedOperationLayerDigestList.t;
    (*

    The digests of the image layers to check.

    *)
}
Sourceval context_ : string
Sourceval make : ?registryId:??? -> repositoryName:RepositoryName.t -> layerDigests:BatchedOperationLayerDigestList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of BatchedOperationLayerDigest.t ] list | `String of RegistryIdOrAlias.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