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.
ecr_put_image(registryId, repositoryName, imageManifest,
imageManifestMediaType, imageTag, imageDigest)
A list with the following syntax:
list(
image = list(
registryId = "string",
repositoryName = "string",
imageId = list(
imageDigest = "string",
imageTag = "string"
),
imageManifest = "string",
imageManifestMediaType = "string"
)
)
The AWS 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.
[required] The name of the repository in which to put the image.
[required] The image manifest corresponding to the image to be uploaded.
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.
The tag to associate with the image. This parameter is required for images that use the Docker Image Manifest V2 Schema 2 or Open Container Initiative (OCI) formats.
The image digest of the image manifest corresponding to the image.
svc$put_image(
registryId = "string",
repositoryName = "string",
imageManifest = "string",
imageManifestMediaType = "string",
imageTag = "string",
imageDigest = "string"
)