line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::StorageGateway::DescribeBandwidthRateLimitOutput; |
3
|
1
|
|
|
1
|
|
356
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has AverageDownloadRateLimitInBitsPerSec => (is => 'ro', isa => 'Int'); |
5
|
|
|
|
|
|
|
has AverageUploadRateLimitInBitsPerSec => (is => 'ro', isa => 'Int'); |
6
|
|
|
|
|
|
|
has GatewayARN => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::StorageGateway::DescribeBandwidthRateLimitOutput |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 AverageDownloadRateLimitInBitsPerSec => Int |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
The average download bandwidth rate limit in bits per second. This |
22
|
|
|
|
|
|
|
field does not appear in the response if the download rate limit is not |
23
|
|
|
|
|
|
|
set. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 AverageUploadRateLimitInBitsPerSec => Int |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
The average upload bandwidth rate limit in bits per second. This field |
29
|
|
|
|
|
|
|
does not appear in the response if the upload rate limit is not set. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 GatewayARN => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 _request_id => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
1; |