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