line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Glacier::DescribeVaultOutput; |
3
|
1
|
|
|
1
|
|
468
|
use Moose; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
|
1
|
|
|
|
|
372
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has CreationDate => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has LastInventoryDate => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has NumberOfArchives => (is => 'ro', isa => 'Int'); |
7
|
|
|
|
|
|
|
has SizeInBytes => (is => 'ro', isa => 'Int'); |
8
|
|
|
|
|
|
|
has VaultARN => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has VaultName => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
1; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
### main pod documentation begin ### |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Paws::Glacier::DescribeVaultOutput |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head2 CreationDate => Str |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
The Universal Coordinated Time (UTC) date when the vault was created. |
26
|
|
|
|
|
|
|
This value should be a string in the ISO 8601 date format, for example |
27
|
|
|
|
|
|
|
C<2012-03-20T17:03:43.221Z>. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 LastInventoryDate => Str |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
The Universal Coordinated Time (UTC) date when Amazon Glacier completed |
33
|
|
|
|
|
|
|
the last vault inventory. This value should be a string in the ISO 8601 |
34
|
|
|
|
|
|
|
date format, for example C<2012-03-20T17:03:43.221Z>. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 NumberOfArchives => Int |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The number of archives in the vault as of the last inventory date. This |
40
|
|
|
|
|
|
|
field will return C<null> if an inventory has not yet run on the vault, |
41
|
|
|
|
|
|
|
for example if you just created the vault. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 SizeInBytes => Int |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Total size, in bytes, of the archives in the vault as of the last |
47
|
|
|
|
|
|
|
inventory date. This field will return null if an inventory has not yet |
48
|
|
|
|
|
|
|
run on the vault, for example if you just created the vault. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 VaultARN => Str |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) of the vault. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 VaultName => Str |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
The name of the vault. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 _request_id => Str |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=cut |
65
|
|
|
|
|
|
|
|