line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::EC2::VolumeModification; |
2
|
1
|
|
|
1
|
|
445
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
11
|
|
3
|
|
|
|
|
|
|
has EndTime => (is => 'ro', isa => 'Str', request_name => 'endTime', traits => ['NameInRequest']); |
4
|
|
|
|
|
|
|
has ModificationState => (is => 'ro', isa => 'Str', request_name => 'modificationState', traits => ['NameInRequest']); |
5
|
|
|
|
|
|
|
has OriginalIops => (is => 'ro', isa => 'Int', request_name => 'originalIops', traits => ['NameInRequest']); |
6
|
|
|
|
|
|
|
has OriginalSize => (is => 'ro', isa => 'Int', request_name => 'originalSize', traits => ['NameInRequest']); |
7
|
|
|
|
|
|
|
has OriginalVolumeType => (is => 'ro', isa => 'Str', request_name => 'originalVolumeType', traits => ['NameInRequest']); |
8
|
|
|
|
|
|
|
has Progress => (is => 'ro', isa => 'Int', request_name => 'progress', traits => ['NameInRequest']); |
9
|
|
|
|
|
|
|
has StartTime => (is => 'ro', isa => 'Str', request_name => 'startTime', traits => ['NameInRequest']); |
10
|
|
|
|
|
|
|
has StatusMessage => (is => 'ro', isa => 'Str', request_name => 'statusMessage', traits => ['NameInRequest']); |
11
|
|
|
|
|
|
|
has TargetIops => (is => 'ro', isa => 'Int', request_name => 'targetIops', traits => ['NameInRequest']); |
12
|
|
|
|
|
|
|
has TargetSize => (is => 'ro', isa => 'Int', request_name => 'targetSize', traits => ['NameInRequest']); |
13
|
|
|
|
|
|
|
has TargetVolumeType => (is => 'ro', isa => 'Str', request_name => 'targetVolumeType', traits => ['NameInRequest']); |
14
|
|
|
|
|
|
|
has VolumeId => (is => 'ro', isa => 'Str', request_name => 'volumeId', traits => ['NameInRequest']); |
15
|
|
|
|
|
|
|
1; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
### main pod documentation begin ### |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Paws::EC2::VolumeModification |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 USAGE |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
This class represents one of two things: |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
30
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::EC2::VolumeModification object: |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { EndTime => $value, ..., VolumeId => $value }); |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head3 Results returned from an API call |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::EC2::VolumeModification object: |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
41
|
|
|
|
|
|
|
$result->Att1->EndTime |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 DESCRIPTION |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
This class has no description |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 EndTime => Str |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Modification completion or failure time. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 ModificationState => Str |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
Current state of modification. Modification state is null for |
58
|
|
|
|
|
|
|
unmodified volumes. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 OriginalIops => Int |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
Original IOPS rate of the volume being modified. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 OriginalSize => Int |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
Original size of the volume being modified. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
=head2 OriginalVolumeType => Str |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
Original EBS volume type of the volume being modified. |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=head2 Progress => Int |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
Modification progress from 0 to 100%. |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=head2 StartTime => Str |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
Modification start time |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
=head2 StatusMessage => Str |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
Generic status message on modification progress or failure. |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
=head2 TargetIops => Int |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
Target IOPS rate of the volume being modified. |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
=head2 TargetSize => Int |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
Target size of the volume being modified. |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
=head2 TargetVolumeType => Str |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
Target EBS volume type of the volume being modified. |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
=head2 VolumeId => Str |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
ID of the volume being modified. |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
=head1 SEE ALSO |
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::EC2> |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
121
|
|
|
|
|
|
|
|
122
|
|
|
|
|
|
|
=cut |