Creates or updates the image manifest and tags associated with an image
Source:R/ecr_operations.R
ecr_put_image.RdCreates or updates the image manifest and tags associated with an image.
See https://www.paws-r-sdk.com/docs/ecr_put_image/ for full documentation.
Usage
ecr_put_image(
registryId = NULL,
repositoryName,
imageManifest,
imageManifestMediaType = NULL,
imageTag = NULL,
imageDigest = NULL
)Arguments
- registryId
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.
- repositoryName
[required] The name of the repository in which to put the image.
- imageManifest
[required] The image manifest corresponding to the image to be uploaded.
- imageManifestMediaType
The media type of the image manifest. If you push an image manifest that does not contain the
mediaTypefield, you must specify theimageManifestMediaTypein the request.- imageTag
The tag to associate with the image. This parameter is optional.
- imageDigest
The image digest of the image manifest corresponding to the image.