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

DescribeImages() public méthode

Returns metadata about the images in a repository, including image size, image tags, and creation date.

Beginning with Docker version 1.9, the Docker client compresses image layers before pushing them to a V2 Docker registry. The output of the docker images command shows the uncompressed image size, so it may return a larger image size than the image sizes returned by DescribeImages.

/// The image requested does not exist in the specified repository. /// /// The specified parameter is invalid. Review the available parameters for the API request. /// /// 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 DescribeImages ( DescribeImagesRequest request ) : DescribeImagesResponse
request Amazon.ECR.Model.DescribeImagesRequest Container for the necessary parameters to execute the DescribeImages service method.
Résultat Amazon.ECR.Model.DescribeImagesResponse
        public DescribeImagesResponse DescribeImages(DescribeImagesRequest request)
        {
            var marshaller = new DescribeImagesRequestMarshaller();
            var unmarshaller = DescribeImagesResponseUnmarshaller.Instance;

            return Invoke<DescribeImagesRequest,DescribeImagesResponse>(request, marshaller, unmarshaller);
        }
AmazonECRClient