Amazon.ECR.AmazonECRClient.UploadLayerPart C# (CSharp) Méthode

UploadLayerPart() public méthode

Uploads an image layer part to Amazon ECR.

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 layer part size is not valid, or the first byte specified is not consecutive to /// the last byte of a previous layer part upload. /// /// The specified parameter is invalid. Review the available parameters for the API request. /// /// 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. /// /// The upload could not be found, or the specified upload id is not valid for this repository. ///
public UploadLayerPart ( UploadLayerPartRequest request ) : UploadLayerPartResponse
request Amazon.ECR.Model.UploadLayerPartRequest Container for the necessary parameters to execute the UploadLayerPart service method.
Résultat Amazon.ECR.Model.UploadLayerPartResponse
        public UploadLayerPartResponse UploadLayerPart(UploadLayerPartRequest request)
        {
            var marshaller = new UploadLayerPartRequestMarshaller();
            var unmarshaller = UploadLayerPartResponseUnmarshaller.Instance;

            return Invoke<UploadLayerPartRequest,UploadLayerPartResponse>(request, marshaller, unmarshaller);
        }
AmazonECRClient