line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::StorageGateway::DescribeGatewayInformationOutput; |
3
|
1
|
|
|
1
|
|
481
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has GatewayARN => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has GatewayId => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has GatewayName => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has GatewayNetworkInterfaces => (is => 'ro', isa => 'ArrayRef[Paws::StorageGateway::NetworkInterface]'); |
8
|
|
|
|
|
|
|
has GatewayState => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has GatewayTimezone => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has GatewayType => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
has LastSoftwareUpdate => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
has NextUpdateAvailabilityDate => (is => 'ro', isa => 'Str'); |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
### main pod documentation begin ### |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Paws::StorageGateway::DescribeGatewayInformationOutput |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 GatewayARN => Str |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 GatewayId => Str |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
The unique identifier assigned to your gateway during activation. This |
33
|
|
|
|
|
|
|
ID becomes part of the gateway Amazon Resource Name (ARN), which you |
34
|
|
|
|
|
|
|
use as input for other operations. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 GatewayName => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The name you configured for your gateway. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 GatewayNetworkInterfaces => ArrayRef[L<Paws::StorageGateway::NetworkInterface>] |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
A NetworkInterface array that contains descriptions of the gateway |
45
|
|
|
|
|
|
|
network interfaces. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 GatewayState => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
A value that indicates the operating state of the gateway. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head2 GatewayTimezone => Str |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
A value that indicates the time zone configured for the gateway. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head2 GatewayType => Str |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
The type of the gateway. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head2 LastSoftwareUpdate => Str |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
The date on which the last software update was applied to the gateway. |
66
|
|
|
|
|
|
|
If the gateway has never been updated, this field does not return a |
67
|
|
|
|
|
|
|
value in the response. |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=head2 NextUpdateAvailabilityDate => Str |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
The date on which an update to the gateway is available. This date is |
73
|
|
|
|
|
|
|
in the time zone of the gateway. If the gateway is not available for an |
74
|
|
|
|
|
|
|
update this field is not returned in the response. |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head2 _request_id => Str |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=cut |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
1; |