line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Glacier::ArchiveCreationOutput; |
3
|
1
|
|
|
1
|
|
828
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
4
|
|
|
|
|
|
|
has ArchiveId => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'archiveId'); |
5
|
|
|
|
|
|
|
has Checksum => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'checksum'); |
6
|
|
|
|
|
|
|
has Location => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'location'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::Glacier::ArchiveCreationOutput |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 ArchiveId => Str |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
The ID of the archive. This value is also included as part of the |
23
|
|
|
|
|
|
|
location. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 Checksum => Str |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
The checksum of the archive computed by Amazon Glacier. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 Location => Str |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
The relative URI path of the newly added archive resource. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 _request_id => Str |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=cut |
40
|
|
|
|
|
|
|
|