| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::RedShift::ResizeProgressMessage; |
|
3
|
1
|
|
|
1
|
|
618
|
use Moose; |
|
|
1
|
|
|
1
|
|
2
|
|
|
|
1
|
|
|
|
|
12
|
|
|
|
1
|
|
|
|
|
608
|
|
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
11
|
|
|
4
|
|
|
|
|
|
|
has AvgResizeRateInMegaBytesPerSecond => (is => 'ro', isa => 'Num'); |
|
5
|
|
|
|
|
|
|
has ElapsedTimeInSeconds => (is => 'ro', isa => 'Int'); |
|
6
|
|
|
|
|
|
|
has EstimatedTimeToCompletionInSeconds => (is => 'ro', isa => 'Int'); |
|
7
|
|
|
|
|
|
|
has ImportTablesCompleted => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
|
8
|
|
|
|
|
|
|
has ImportTablesInProgress => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
|
9
|
|
|
|
|
|
|
has ImportTablesNotStarted => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
|
10
|
|
|
|
|
|
|
has ProgressInMegaBytes => (is => 'ro', isa => 'Int'); |
|
11
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Str'); |
|
12
|
|
|
|
|
|
|
has TargetClusterType => (is => 'ro', isa => 'Str'); |
|
13
|
|
|
|
|
|
|
has TargetNodeType => (is => 'ro', isa => 'Str'); |
|
14
|
|
|
|
|
|
|
has TargetNumberOfNodes => (is => 'ro', isa => 'Int'); |
|
15
|
|
|
|
|
|
|
has TotalResizeDataInMegaBytes => (is => 'ro', isa => 'Int'); |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
18
|
|
|
|
|
|
|
1; |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 NAME |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Paws::RedShift::ResizeProgressMessage |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 AvgResizeRateInMegaBytesPerSecond => Num |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
The average rate of the resize operation over the last few minutes, |
|
32
|
|
|
|
|
|
|
measured in megabytes per second. After the resize operation completes, |
|
33
|
|
|
|
|
|
|
this value shows the average rate of the entire resize operation. |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 ElapsedTimeInSeconds => Int |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
The amount of seconds that have elapsed since the resize operation |
|
39
|
|
|
|
|
|
|
began. After the resize operation completes, this value shows the total |
|
40
|
|
|
|
|
|
|
actual time, in seconds, for the resize operation. |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 EstimatedTimeToCompletionInSeconds => Int |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
The estimated time remaining, in seconds, until the resize operation is |
|
46
|
|
|
|
|
|
|
complete. This value is calculated based on the average resize rate and |
|
47
|
|
|
|
|
|
|
the estimated amount of data remaining to be processed. Once the resize |
|
48
|
|
|
|
|
|
|
operation is complete, this value will be 0. |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 ImportTablesCompleted => ArrayRef[Str|Undef] |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
The names of tables that have been completely imported . |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
Valid Values: List of table names. |
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head2 ImportTablesInProgress => ArrayRef[Str|Undef] |
|
59
|
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
The names of tables that are being currently imported. |
|
61
|
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
Valid Values: List of table names. |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=head2 ImportTablesNotStarted => ArrayRef[Str|Undef] |
|
66
|
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
The names of tables that have not been yet imported. |
|
68
|
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
Valid Values: List of table names |
|
70
|
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head2 ProgressInMegaBytes => Int |
|
73
|
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
While the resize operation is in progress, this value shows the current |
|
75
|
|
|
|
|
|
|
amount of data, in megabytes, that has been processed so far. When the |
|
76
|
|
|
|
|
|
|
resize operation is complete, this value shows the total amount of |
|
77
|
|
|
|
|
|
|
data, in megabytes, on the cluster, which may be more or less than |
|
78
|
|
|
|
|
|
|
TotalResizeDataInMegaBytes (the estimated total amount of data before |
|
79
|
|
|
|
|
|
|
resize). |
|
80
|
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=head2 Status => Str |
|
83
|
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
The status of the resize operation. |
|
85
|
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
Valid Values: C<NONE> | C<IN_PROGRESS> | C<FAILED> | C<SUCCEEDED> |
|
87
|
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
=head2 TargetClusterType => Str |
|
90
|
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
The cluster type after the resize operation is complete. |
|
92
|
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
Valid Values: C<multi-node> | C<single-node> |
|
94
|
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
=head2 TargetNodeType => Str |
|
97
|
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
The node type that the cluster will have after the resize operation is |
|
99
|
|
|
|
|
|
|
complete. |
|
100
|
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
=head2 TargetNumberOfNodes => Int |
|
103
|
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
The number of nodes that the cluster will have after the resize |
|
105
|
|
|
|
|
|
|
operation is complete. |
|
106
|
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
=head2 TotalResizeDataInMegaBytes => Int |
|
109
|
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
The estimated total amount of data, in megabytes, on the cluster before |
|
111
|
|
|
|
|
|
|
the resize operation began. |
|
112
|
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
115
|
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
|
|
117
|
|
|
|
|
|
|
=cut |
|
118
|
|
|
|
|
|
|
|