File Coverage

blib/lib/Paws/StorageGateway/DescribeCacheOutput.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::DescribeCacheOutput;
3 1     1   655 use Moose;
  1         5  
  1         14  
4             has CacheAllocatedInBytes => (is => 'ro', isa => 'Int');
5             has CacheDirtyPercentage => (is => 'ro', isa => 'Num');
6             has CacheHitPercentage => (is => 'ro', isa => 'Num');
7             has CacheMissPercentage => (is => 'ro', isa => 'Num');
8             has CacheUsedPercentage => (is => 'ro', isa => 'Num');
9             has DiskIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
10             has GatewayARN => (is => 'ro', isa => 'Str');
11              
12             has _request_id => (is => 'ro', isa => 'Str');
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::StorageGateway::DescribeCacheOutput
19              
20             =head1 ATTRIBUTES
21              
22              
23             =head2 CacheAllocatedInBytes => Int
24              
25              
26              
27              
28             =head2 CacheDirtyPercentage => Num
29              
30              
31              
32              
33             =head2 CacheHitPercentage => Num
34              
35              
36              
37              
38             =head2 CacheMissPercentage => Num
39              
40              
41              
42              
43             =head2 CacheUsedPercentage => Num
44              
45              
46              
47              
48             =head2 DiskIds => ArrayRef[Str|Undef]
49              
50              
51              
52              
53             =head2 GatewayARN => Str
54              
55              
56              
57              
58             =head2 _request_id => Str
59              
60              
61             =cut
62              
63             1;