Module Values.PutImageRequestSource

Creates or updates the image manifest and tags associated with an image. When an image is pushed and all new image layers have been uploaded, the PutImage API is called once to create or update the image manifest and the tags associated with the image. 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 : RegistryId.t option;
    (*

    The Amazon Web Services account ID associated with the registry that contains the repository in which to put the image. If you do not specify a registry, the default registry is assumed.

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

    The name of the repository in which to put the image.

    *)
  3. imageManifest : ImageManifest.t;
    (*

    The image manifest corresponding to the image to be uploaded.

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

    The media type of the image manifest. If you push an image manifest that does not contain the mediaType field, you must specify the imageManifestMediaType in the request.

    *)
  5. imageTag : ImageTag.t option;
    (*

    The tag to associate with the image. This parameter is optional.

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

    The image digest of the image manifest corresponding to the image.

    *)
}
Sourceval context_ : string
Sourceval make : ?registryId:??? -> ?imageManifestMediaType:??? -> ?imageTag:??? -> ?imageDigest:??? -> repositoryName:RepositoryName.t -> imageManifest:ImageManifest.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RegistryId.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