File Coverage

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