line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::ECR::ImageDetail; |
2
|
1
|
|
|
1
|
|
437
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
3
|
|
|
|
|
|
|
has ImageDigest => (is => 'ro', isa => 'Str', request_name => 'imageDigest', traits => ['NameInRequest']); |
4
|
|
|
|
|
|
|
has ImagePushedAt => (is => 'ro', isa => 'Str', request_name => 'imagePushedAt', traits => ['NameInRequest']); |
5
|
|
|
|
|
|
|
has ImageSizeInBytes => (is => 'ro', isa => 'Int', request_name => 'imageSizeInBytes', traits => ['NameInRequest']); |
6
|
|
|
|
|
|
|
has ImageTags => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'imageTags', traits => ['NameInRequest']); |
7
|
|
|
|
|
|
|
has RegistryId => (is => 'ro', isa => 'Str', request_name => 'registryId', traits => ['NameInRequest']); |
8
|
|
|
|
|
|
|
has RepositoryName => (is => 'ro', isa => 'Str', request_name => 'repositoryName', traits => ['NameInRequest']); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::ECR::ImageDetail |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 USAGE |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
This class represents one of two things: |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
24
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::ECR::ImageDetail object: |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { ImageDigest => $value, ..., RepositoryName => $value }); |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head3 Results returned from an API call |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::ECR::ImageDetail object: |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
35
|
|
|
|
|
|
|
$result->Att1->ImageDigest |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 DESCRIPTION |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
An object that describes an image returned by a DescribeImages |
40
|
|
|
|
|
|
|
operation. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 ImageDigest => Str |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
The C<sha256> digest of the image manifest. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 ImagePushedAt => Str |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
The date and time, expressed in standard JavaScript date format, at |
53
|
|
|
|
|
|
|
which the current image was pushed to the repository. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 ImageSizeInBytes => Int |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
The size, in bytes, of the image in the repository. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
Beginning with Docker version 1.9, the Docker client compresses image |
61
|
|
|
|
|
|
|
layers before pushing them to a V2 Docker registry. The output of the |
62
|
|
|
|
|
|
|
C<docker images> command shows the uncompressed image size, so it may |
63
|
|
|
|
|
|
|
return a larger image size than the image sizes returned by |
64
|
|
|
|
|
|
|
DescribeImages. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head2 ImageTags => ArrayRef[Str|Undef] |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
The list of tags associated with this image. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head2 RegistryId => Str |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
The AWS account ID associated with the registry to which this image |
75
|
|
|
|
|
|
|
belongs. |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
=head2 RepositoryName => Str |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
The name of the repository to which this image belongs. |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=head1 SEE ALSO |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::ECR> |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
=cut |
95
|
|
|
|
|
|
|
|