File Coverage

blib/lib/Paws/ECR/DescribeImages.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::ECR::DescribeImages;
3 1     1   704 use Moose;
  1         5  
  1         12  
4             has Filter => (is => 'ro', isa => 'Paws::ECR::DescribeImagesFilter', traits => ['NameInRequest'], request_name => 'filter' );
5             has ImageIds => (is => 'ro', isa => 'ArrayRef[Paws::ECR::ImageIdentifier]', traits => ['NameInRequest'], request_name => 'imageIds' );
6             has MaxResults => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'maxResults' );
7             has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' );
8             has RegistryId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'registryId' );
9             has RepositoryName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'repositoryName' , required => 1);
10              
11 1     1   11758 use MooseX::ClassAttribute;
  1         4  
  1         15  
12              
13             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeImages');
14             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ECR::DescribeImagesResponse');
15             class_has _result_key => (isa => 'Str', is => 'ro');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::ECR::DescribeImages - Arguments for method DescribeImages on Paws::ECR
23              
24             =head1 DESCRIPTION
25              
26             This class represents the parameters used for calling the method DescribeImages on the
27             Amazon EC2 Container Registry service. Use the attributes of this class
28             as arguments to method DescribeImages.
29              
30             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeImages.
31              
32             As an example:
33              
34             $service_obj->DescribeImages(Att1 => $value1, Att2 => $value2, ...);
35              
36             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
37              
38             =head1 ATTRIBUTES
39              
40              
41             =head2 Filter => L<Paws::ECR::DescribeImagesFilter>
42              
43             The filter key and value with which to filter your C<DescribeImages>
44             results.
45              
46              
47              
48             =head2 ImageIds => ArrayRef[L<Paws::ECR::ImageIdentifier>]
49              
50             The list of image IDs for the requested repository.
51              
52              
53              
54             =head2 MaxResults => Int
55              
56             The maximum number of repository results returned by C<DescribeImages>
57             in paginated output. When this parameter is used, C<DescribeImages>
58             only returns C<maxResults> results in a single page along with a
59             C<nextToken> response element. The remaining results of the initial
60             request can be seen by sending another C<DescribeImages> request with
61             the returned C<nextToken> value. This value can be between 1 and 100.
62             If this parameter is not used, then C<DescribeImages> returns up to 100
63             results and a C<nextToken> value, if applicable.
64              
65              
66              
67             =head2 NextToken => Str
68              
69             The C<nextToken> value returned from a previous paginated
70             C<DescribeImages> request where C<maxResults> was used and the results
71             exceeded the value of that parameter. Pagination continues from the end
72             of the previous results that returned the C<nextToken> value. This
73             value is C<null> when there are no more results to return.
74              
75              
76              
77             =head2 RegistryId => Str
78              
79             The AWS account ID associated with the registry that contains the
80             repository in which to describe images. If you do not specify a
81             registry, the default registry is assumed.
82              
83              
84              
85             =head2 B<REQUIRED> RepositoryName => Str
86              
87             A list of repositories to describe. If this parameter is omitted, then
88             all repositories in a registry are described.
89              
90              
91              
92              
93             =head1 SEE ALSO
94              
95             This class forms part of L<Paws>, documenting arguments for method DescribeImages in L<Paws::ECR>
96              
97             =head1 BUGS and CONTRIBUTIONS
98              
99             The source code is located here: https://github.com/pplu/aws-sdk-perl
100              
101             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
102              
103             =cut
104