Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Returns metadata about the images in a repository in a public registry.
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.
This operation returns paginated results.
Synopsis
- data DescribeImages = DescribeImages' {}
- newDescribeImages :: Text -> DescribeImages
- describeImages_registryId :: Lens' DescribeImages (Maybe Text)
- describeImages_imageIds :: Lens' DescribeImages (Maybe (NonEmpty ImageIdentifier))
- describeImages_nextToken :: Lens' DescribeImages (Maybe Text)
- describeImages_maxResults :: Lens' DescribeImages (Maybe Natural)
- describeImages_repositoryName :: Lens' DescribeImages Text
- data DescribeImagesResponse = DescribeImagesResponse' {
- imageDetails :: Maybe [ImageDetail]
- nextToken :: Maybe Text
- httpStatus :: Int
- newDescribeImagesResponse :: Int -> DescribeImagesResponse
- describeImagesResponse_imageDetails :: Lens' DescribeImagesResponse (Maybe [ImageDetail])
- describeImagesResponse_nextToken :: Lens' DescribeImagesResponse (Maybe Text)
- describeImagesResponse_httpStatus :: Lens' DescribeImagesResponse Int
Creating a Request
data DescribeImages Source #
See: newDescribeImages
smart constructor.
DescribeImages' | |
|
Instances
Create a value of DescribeImages
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:registryId:DescribeImages'
, describeImages_registryId
- The AWS account ID associated with the public registry that contains the
repository in which to describe images. If you do not specify a
registry, the default public registry is assumed.
$sel:imageIds:DescribeImages'
, describeImages_imageIds
- The list of image IDs for the requested repository.
$sel:nextToken:DescribeImages'
, describeImages_nextToken
- The nextToken
value returned from a previous paginated
DescribeImages
request where maxResults
was used and the results
exceeded the value of that parameter. Pagination continues from the end
of the previous results that returned the nextToken
value. This value
is null
when there are no more results to return. This option cannot
be used when you specify images with imageIds
.
$sel:maxResults:DescribeImages'
, describeImages_maxResults
- The maximum number of repository results returned by DescribeImages
in
paginated output. When this parameter is used, DescribeImages
only
returns maxResults
results in a single page along with a nextToken
response element. The remaining results of the initial request can be
seen by sending another DescribeImages
request with the returned
nextToken
value. This value can be between 1 and 1000. If this
parameter is not used, then DescribeImages
returns up to 100 results
and a nextToken
value, if applicable. This option cannot be used when
you specify images with imageIds
.
$sel:repositoryName:DescribeImages'
, describeImages_repositoryName
- The repository that contains the images to describe.
Request Lenses
describeImages_registryId :: Lens' DescribeImages (Maybe Text) Source #
The AWS account ID associated with the public registry that contains the repository in which to describe images. If you do not specify a registry, the default public registry is assumed.
describeImages_imageIds :: Lens' DescribeImages (Maybe (NonEmpty ImageIdentifier)) Source #
The list of image IDs for the requested repository.
describeImages_nextToken :: Lens' DescribeImages (Maybe Text) Source #
The nextToken
value returned from a previous paginated
DescribeImages
request where maxResults
was used and the results
exceeded the value of that parameter. Pagination continues from the end
of the previous results that returned the nextToken
value. This value
is null
when there are no more results to return. This option cannot
be used when you specify images with imageIds
.
describeImages_maxResults :: Lens' DescribeImages (Maybe Natural) Source #
The maximum number of repository results returned by DescribeImages
in
paginated output. When this parameter is used, DescribeImages
only
returns maxResults
results in a single page along with a nextToken
response element. The remaining results of the initial request can be
seen by sending another DescribeImages
request with the returned
nextToken
value. This value can be between 1 and 1000. If this
parameter is not used, then DescribeImages
returns up to 100 results
and a nextToken
value, if applicable. This option cannot be used when
you specify images with imageIds
.
describeImages_repositoryName :: Lens' DescribeImages Text Source #
The repository that contains the images to describe.
Destructuring the Response
data DescribeImagesResponse Source #
See: newDescribeImagesResponse
smart constructor.
DescribeImagesResponse' | |
|
Instances
newDescribeImagesResponse Source #
Create a value of DescribeImagesResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:imageDetails:DescribeImagesResponse'
, describeImagesResponse_imageDetails
- A list of ImageDetail objects that contain data about the image.
$sel:nextToken:DescribeImages'
, describeImagesResponse_nextToken
- The nextToken
value to include in a future DescribeImages
request.
When the results of a DescribeImages
request exceed maxResults
, this
value can be used to retrieve the next page of results. This value is
null
when there are no more results to return.
$sel:httpStatus:DescribeImagesResponse'
, describeImagesResponse_httpStatus
- The response's http status code.
Response Lenses
describeImagesResponse_imageDetails :: Lens' DescribeImagesResponse (Maybe [ImageDetail]) Source #
A list of ImageDetail objects that contain data about the image.
describeImagesResponse_nextToken :: Lens' DescribeImagesResponse (Maybe Text) Source #
The nextToken
value to include in a future DescribeImages
request.
When the results of a DescribeImages
request exceed maxResults
, this
value can be used to retrieve the next page of results. This value is
null
when there are no more results to return.
describeImagesResponse_httpStatus :: Lens' DescribeImagesResponse Int Source #
The response's http status code.