File Coverage

blib/lib/Paws/StorageGateway/DescribeWorkingStorageOutput.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::StorageGateway::DescribeWorkingStorageOutput;
3 1     1   661 use Moose;
  1         4  
  1         11  
4             has DiskIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
5             has GatewayARN => (is => 'ro', isa => 'Str');
6             has WorkingStorageAllocatedInBytes => (is => 'ro', isa => 'Int');
7             has WorkingStorageUsedInBytes => (is => 'ro', isa => 'Int');
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::StorageGateway::DescribeWorkingStorageOutput
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 DiskIds => ArrayRef[Str|Undef]
21              
22             An array of the gateway's local disk IDs that are configured as working
23             storage. Each local disk ID is specified as a string (minimum length of
24             1 and maximum length of 300). If no local disks are configured as
25             working storage, then the DiskIds array is empty.
26              
27              
28             =head2 GatewayARN => Str
29              
30              
31              
32              
33             =head2 WorkingStorageAllocatedInBytes => Int
34              
35             The total working storage in bytes allocated for the gateway. If no
36             working storage is configured for the gateway, this field returns 0.
37              
38              
39             =head2 WorkingStorageUsedInBytes => Int
40              
41             The total working storage in bytes in use by the gateway. If no working
42             storage is configured for the gateway, this field returns 0.
43              
44              
45             =head2 _request_id => Str
46              
47              
48             =cut
49              
50             1;