Amazon.ECR.AmazonECRClient.PutImage C# (CSharp) Метод

PutImage() публичный Метод

Creates or updates the image manifest and tags associated with an image.

This operation is used by the Amazon ECR proxy, and it is not intended for general use by customers for pulling and pushing images. In most cases, you should use the docker CLI to pull, tag, and push images.

/// The specified image has already been pushed, and there are no changes to the manifest /// or image tag since the last push. /// /// The specified parameter is invalid. Review the available parameters for the API request. /// /// The specified layers could not be found, or the specified layer is not valid for this /// repository. /// /// The operation did not succeed because it would have exceeded a service limit for your /// account. For more information, see Amazon /// ECR Default Service Limits in the Amazon EC2 Container Registry User Guide. /// /// The specified repository could not be found. Check the spelling of the specified repository /// and ensure that you are performing operations on the correct registry. /// /// These errors are usually caused by a server-side issue. ///
public PutImage ( PutImageRequest request ) : PutImageResponse
request Amazon.ECR.Model.PutImageRequest Container for the necessary parameters to execute the PutImage service method.
Результат Amazon.ECR.Model.PutImageResponse
        public PutImageResponse PutImage(PutImageRequest request)
        {
            var marshaller = new PutImageRequestMarshaller();
            var unmarshaller = PutImageResponseUnmarshaller.Instance;

            return Invoke<PutImageRequest,PutImageResponse>(request, marshaller, unmarshaller);
        }
AmazonECRClient