File Coverage

blib/lib/Paws/OpsWorks/RaidArray.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             package Paws::OpsWorks::RaidArray;
2 1     1   505 use Moose;
  1         4  
  1         9  
3             has AvailabilityZone => (is => 'ro', isa => 'Str');
4             has CreatedAt => (is => 'ro', isa => 'Str');
5             has Device => (is => 'ro', isa => 'Str');
6             has InstanceId => (is => 'ro', isa => 'Str');
7             has Iops => (is => 'ro', isa => 'Int');
8             has MountPoint => (is => 'ro', isa => 'Str');
9             has Name => (is => 'ro', isa => 'Str');
10             has NumberOfDisks => (is => 'ro', isa => 'Int');
11             has RaidArrayId => (is => 'ro', isa => 'Str');
12             has RaidLevel => (is => 'ro', isa => 'Int');
13             has Size => (is => 'ro', isa => 'Int');
14             has StackId => (is => 'ro', isa => 'Str');
15             has VolumeType => (is => 'ro', isa => 'Str');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::OpsWorks::RaidArray
23              
24             =head1 USAGE
25              
26             This class represents one of two things:
27              
28             =head3 Arguments in a call to a service
29              
30             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
31             Each attribute should be used as a named argument in the calls that expect this type of object.
32              
33             As an example, if Att1 is expected to be a Paws::OpsWorks::RaidArray object:
34              
35             $service_obj->Method(Att1 => { AvailabilityZone => $value, ..., VolumeType => $value });
36              
37             =head3 Results returned from an API call
38              
39             Use accessors for each attribute. If Att1 is expected to be an Paws::OpsWorks::RaidArray object:
40              
41             $result = $service_obj->Method(...);
42             $result->Att1->AvailabilityZone
43              
44             =head1 DESCRIPTION
45              
46             Describes an instance's RAID array.
47              
48             =head1 ATTRIBUTES
49              
50              
51             =head2 AvailabilityZone => Str
52              
53             The array's Availability Zone. For more information, see Regions and
54             Endpoints.
55              
56              
57             =head2 CreatedAt => Str
58              
59             When the RAID array was created.
60              
61              
62             =head2 Device => Str
63              
64             The array's Linux device. For example /dev/mdadm0.
65              
66              
67             =head2 InstanceId => Str
68              
69             The instance ID.
70              
71              
72             =head2 Iops => Int
73              
74             For PIOPS volumes, the IOPS per disk.
75              
76              
77             =head2 MountPoint => Str
78              
79             The array's mount point.
80              
81              
82             =head2 Name => Str
83              
84             The array name.
85              
86              
87             =head2 NumberOfDisks => Int
88              
89             The number of disks in the array.
90              
91              
92             =head2 RaidArrayId => Str
93              
94             The array ID.
95              
96              
97             =head2 RaidLevel => Int
98              
99             The RAID level.
100              
101              
102             =head2 Size => Int
103              
104             The array's size.
105              
106              
107             =head2 StackId => Str
108              
109             The stack ID.
110              
111              
112             =head2 VolumeType => Str
113              
114             The volume type, standard or PIOPS.
115              
116              
117              
118             =head1 SEE ALSO
119              
120             This class forms part of L<Paws>, describing an object used in L<Paws::OpsWorks>
121              
122             =head1 BUGS and CONTRIBUTIONS
123              
124             The source code is located here: https://github.com/pplu/aws-sdk-perl
125              
126             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
127              
128             =cut
129