| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::ECR::BatchGetImageResponse; |
|
3
|
1
|
|
|
1
|
|
520
|
use Moose; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
6
|
|
|
4
|
|
|
|
|
|
|
has Failures => (is => 'ro', isa => 'ArrayRef[Paws::ECR::ImageFailure]', traits => ['NameInRequest'], request_name => 'failures' ); |
|
5
|
|
|
|
|
|
|
has Images => (is => 'ro', isa => 'ArrayRef[Paws::ECR::Image]', traits => ['NameInRequest'], request_name => 'images' ); |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::ECR::BatchGetImageResponse |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 Failures => ArrayRef[L<Paws::ECR::ImageFailure>] |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Any failures associated with the call. |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head2 Images => ArrayRef[L<Paws::ECR::Image>] |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
A list of image objects corresponding to the image references in the |
|
26
|
|
|
|
|
|
|
request. |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=cut |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
1; |