ECRPublic.Paginator.
DescribeImages
¶paginator = client.get_paginator('describe_images')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from ECRPublic.Client.describe_images()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
registryId='string',
repositoryName='string',
imageIds=[
{
'imageDigest': 'string',
'imageTag': 'string'
},
],
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
[REQUIRED]
The repository that contains the images to describe.
The list of image IDs for the requested repository.
An object with identifying information for an Amazon ECR image.
The sha256
digest of the image manifest.
The tag that's used for the image.
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'imageDetails': [
{
'registryId': 'string',
'repositoryName': 'string',
'imageDigest': 'string',
'imageTags': [
'string',
],
'imageSizeInBytes': 123,
'imagePushedAt': datetime(2015, 1, 1),
'imageManifestMediaType': 'string',
'artifactMediaType': 'string'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
imageDetails (list) --
A list of ImageDetail objects that contain data about the image.
(dict) --
An object that describes an image that's returned by a DescribeImages operation.
registryId (string) --
The Amazon Web Services account ID that's associated with the public registry where this image belongs.
repositoryName (string) --
The name of the repository where this image belongs.
imageDigest (string) --
The sha256
digest of the image manifest.
imageTags (list) --
The list of tags that's associated with this image.
imageSizeInBytes (integer) --
The size, in bytes, of the image in the repository.
If the image is a manifest list, this is the max size of all manifests in the list.
Note
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 might return a larger image size than the image sizes that are returned by DescribeImages.
imagePushedAt (datetime) --
The date and time, expressed in standard JavaScript date format, that the current image was pushed to the repository at.
imageManifestMediaType (string) --
The media type of the image manifest.
artifactMediaType (string) --
The artifact media type of the image.
NextToken (string) --
A token to resume pagination.