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