line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Glacier::ListPartsOutput; |
3
|
1
|
|
|
1
|
|
364
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has ArchiveDescription => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has CreationDate => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has MultipartUploadId => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has Parts => (is => 'ro', isa => 'ArrayRef[Paws::Glacier::PartListElement]'); |
9
|
|
|
|
|
|
|
has PartSizeInBytes => (is => 'ro', isa => 'Int'); |
10
|
|
|
|
|
|
|
has VaultARN => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
### main pod documentation begin ### |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Paws::Glacier::ListPartsOutput |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 ArchiveDescription => Str |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
The description of the archive that was specified in the Initiate |
27
|
|
|
|
|
|
|
Multipart Upload request. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 CreationDate => Str |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
The UTC time at which the multipart upload was initiated. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 Marker => Str |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
An opaque string that represents where to continue pagination of the |
38
|
|
|
|
|
|
|
results. You use the marker in a new List Parts request to obtain more |
39
|
|
|
|
|
|
|
jobs in the list. If there are no more parts, this value is C<null>. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 MultipartUploadId => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The ID of the upload to which the parts are associated. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 Parts => ArrayRef[L<Paws::Glacier::PartListElement>] |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
A list of the part sizes of the multipart upload. Each object in the |
50
|
|
|
|
|
|
|
array contains a C<RangeBytes> and C<sha256-tree-hash> name/value pair. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head2 PartSizeInBytes => Int |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
The part size in bytes. This is the same value that you specified in |
56
|
|
|
|
|
|
|
the Initiate Multipart Upload request. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head2 VaultARN => Str |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) of the vault to which the multipart |
62
|
|
|
|
|
|
|
upload was initiated. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=head2 _request_id => Str |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=cut |
69
|
|
|
|
|
|
|
|