forked from aws/aws-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutoScalingThresholds.java
More file actions
437 lines (396 loc) · 17.8 KB
/
AutoScalingThresholds.java
File metadata and controls
437 lines (396 loc) · 17.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
/*
* Copyright 2010-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.amazonaws.services.opsworks.model;
import java.io.Serializable;
/**
* <p>
* Describes a load-based auto scaling upscaling or downscaling threshold configuration, which specifies when AWS OpsWorks starts or stops load-based
* instances.
* </p>
*/
public class AutoScalingThresholds implements Serializable {
/**
* The number of instances to add or remove when the load exceeds a
* threshold.
*/
private Integer instanceCount;
/**
* The amount of time, in minutes, that the load must exceed a threshold
* before more instances are added or removed.
* <p>
* <b>Constraints:</b><br/>
* <b>Range: </b>1 - 100<br/>
*/
private Integer thresholdsWaitTime;
/**
* The amount of time (in minutes) after a scaling event occurs that AWS
* OpsWorks should ignore metrics and not raise any additional scaling
* events. For example, AWS OpsWorks adds new instances following an
* upscaling event but the instances won't start reducing the load until
* they have been booted and configured. There is no point in raising
* additional scaling events during that operation, which typically takes
* several minutes. <code>IgnoreMetricsTime</code> allows you to direct
* AWS OpsWorks to not raise any scaling events long enough to get the
* new instances online.
* <p>
* <b>Constraints:</b><br/>
* <b>Range: </b>1 - 100<br/>
*/
private Integer ignoreMetricsTime;
/**
* The CPU utilization threshold, as a percent of the available CPU.
*/
private Double cpuThreshold;
/**
* The memory utilization threshold, as a percent of the available
* memory.
*/
private Double memoryThreshold;
/**
* The load threshold. For more information about how load is computed,
* see <a href="http://en.wikipedia.org/wiki/Load_%28computing%29">Load
* (computing)</a>.
*/
private Double loadThreshold;
/**
* The number of instances to add or remove when the load exceeds a
* threshold.
*
* @return The number of instances to add or remove when the load exceeds a
* threshold.
*/
public Integer getInstanceCount() {
return instanceCount;
}
/**
* The number of instances to add or remove when the load exceeds a
* threshold.
*
* @param instanceCount The number of instances to add or remove when the load exceeds a
* threshold.
*/
public void setInstanceCount(Integer instanceCount) {
this.instanceCount = instanceCount;
}
/**
* The number of instances to add or remove when the load exceeds a
* threshold.
* <p>
* Returns a reference to this object so that method calls can be chained together.
*
* @param instanceCount The number of instances to add or remove when the load exceeds a
* threshold.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public AutoScalingThresholds withInstanceCount(Integer instanceCount) {
this.instanceCount = instanceCount;
return this;
}
/**
* The amount of time, in minutes, that the load must exceed a threshold
* before more instances are added or removed.
* <p>
* <b>Constraints:</b><br/>
* <b>Range: </b>1 - 100<br/>
*
* @return The amount of time, in minutes, that the load must exceed a threshold
* before more instances are added or removed.
*/
public Integer getThresholdsWaitTime() {
return thresholdsWaitTime;
}
/**
* The amount of time, in minutes, that the load must exceed a threshold
* before more instances are added or removed.
* <p>
* <b>Constraints:</b><br/>
* <b>Range: </b>1 - 100<br/>
*
* @param thresholdsWaitTime The amount of time, in minutes, that the load must exceed a threshold
* before more instances are added or removed.
*/
public void setThresholdsWaitTime(Integer thresholdsWaitTime) {
this.thresholdsWaitTime = thresholdsWaitTime;
}
/**
* The amount of time, in minutes, that the load must exceed a threshold
* before more instances are added or removed.
* <p>
* Returns a reference to this object so that method calls can be chained together.
* <p>
* <b>Constraints:</b><br/>
* <b>Range: </b>1 - 100<br/>
*
* @param thresholdsWaitTime The amount of time, in minutes, that the load must exceed a threshold
* before more instances are added or removed.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public AutoScalingThresholds withThresholdsWaitTime(Integer thresholdsWaitTime) {
this.thresholdsWaitTime = thresholdsWaitTime;
return this;
}
/**
* The amount of time (in minutes) after a scaling event occurs that AWS
* OpsWorks should ignore metrics and not raise any additional scaling
* events. For example, AWS OpsWorks adds new instances following an
* upscaling event but the instances won't start reducing the load until
* they have been booted and configured. There is no point in raising
* additional scaling events during that operation, which typically takes
* several minutes. <code>IgnoreMetricsTime</code> allows you to direct
* AWS OpsWorks to not raise any scaling events long enough to get the
* new instances online.
* <p>
* <b>Constraints:</b><br/>
* <b>Range: </b>1 - 100<br/>
*
* @return The amount of time (in minutes) after a scaling event occurs that AWS
* OpsWorks should ignore metrics and not raise any additional scaling
* events. For example, AWS OpsWorks adds new instances following an
* upscaling event but the instances won't start reducing the load until
* they have been booted and configured. There is no point in raising
* additional scaling events during that operation, which typically takes
* several minutes. <code>IgnoreMetricsTime</code> allows you to direct
* AWS OpsWorks to not raise any scaling events long enough to get the
* new instances online.
*/
public Integer getIgnoreMetricsTime() {
return ignoreMetricsTime;
}
/**
* The amount of time (in minutes) after a scaling event occurs that AWS
* OpsWorks should ignore metrics and not raise any additional scaling
* events. For example, AWS OpsWorks adds new instances following an
* upscaling event but the instances won't start reducing the load until
* they have been booted and configured. There is no point in raising
* additional scaling events during that operation, which typically takes
* several minutes. <code>IgnoreMetricsTime</code> allows you to direct
* AWS OpsWorks to not raise any scaling events long enough to get the
* new instances online.
* <p>
* <b>Constraints:</b><br/>
* <b>Range: </b>1 - 100<br/>
*
* @param ignoreMetricsTime The amount of time (in minutes) after a scaling event occurs that AWS
* OpsWorks should ignore metrics and not raise any additional scaling
* events. For example, AWS OpsWorks adds new instances following an
* upscaling event but the instances won't start reducing the load until
* they have been booted and configured. There is no point in raising
* additional scaling events during that operation, which typically takes
* several minutes. <code>IgnoreMetricsTime</code> allows you to direct
* AWS OpsWorks to not raise any scaling events long enough to get the
* new instances online.
*/
public void setIgnoreMetricsTime(Integer ignoreMetricsTime) {
this.ignoreMetricsTime = ignoreMetricsTime;
}
/**
* The amount of time (in minutes) after a scaling event occurs that AWS
* OpsWorks should ignore metrics and not raise any additional scaling
* events. For example, AWS OpsWorks adds new instances following an
* upscaling event but the instances won't start reducing the load until
* they have been booted and configured. There is no point in raising
* additional scaling events during that operation, which typically takes
* several minutes. <code>IgnoreMetricsTime</code> allows you to direct
* AWS OpsWorks to not raise any scaling events long enough to get the
* new instances online.
* <p>
* Returns a reference to this object so that method calls can be chained together.
* <p>
* <b>Constraints:</b><br/>
* <b>Range: </b>1 - 100<br/>
*
* @param ignoreMetricsTime The amount of time (in minutes) after a scaling event occurs that AWS
* OpsWorks should ignore metrics and not raise any additional scaling
* events. For example, AWS OpsWorks adds new instances following an
* upscaling event but the instances won't start reducing the load until
* they have been booted and configured. There is no point in raising
* additional scaling events during that operation, which typically takes
* several minutes. <code>IgnoreMetricsTime</code> allows you to direct
* AWS OpsWorks to not raise any scaling events long enough to get the
* new instances online.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public AutoScalingThresholds withIgnoreMetricsTime(Integer ignoreMetricsTime) {
this.ignoreMetricsTime = ignoreMetricsTime;
return this;
}
/**
* The CPU utilization threshold, as a percent of the available CPU.
*
* @return The CPU utilization threshold, as a percent of the available CPU.
*/
public Double getCpuThreshold() {
return cpuThreshold;
}
/**
* The CPU utilization threshold, as a percent of the available CPU.
*
* @param cpuThreshold The CPU utilization threshold, as a percent of the available CPU.
*/
public void setCpuThreshold(Double cpuThreshold) {
this.cpuThreshold = cpuThreshold;
}
/**
* The CPU utilization threshold, as a percent of the available CPU.
* <p>
* Returns a reference to this object so that method calls can be chained together.
*
* @param cpuThreshold The CPU utilization threshold, as a percent of the available CPU.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public AutoScalingThresholds withCpuThreshold(Double cpuThreshold) {
this.cpuThreshold = cpuThreshold;
return this;
}
/**
* The memory utilization threshold, as a percent of the available
* memory.
*
* @return The memory utilization threshold, as a percent of the available
* memory.
*/
public Double getMemoryThreshold() {
return memoryThreshold;
}
/**
* The memory utilization threshold, as a percent of the available
* memory.
*
* @param memoryThreshold The memory utilization threshold, as a percent of the available
* memory.
*/
public void setMemoryThreshold(Double memoryThreshold) {
this.memoryThreshold = memoryThreshold;
}
/**
* The memory utilization threshold, as a percent of the available
* memory.
* <p>
* Returns a reference to this object so that method calls can be chained together.
*
* @param memoryThreshold The memory utilization threshold, as a percent of the available
* memory.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public AutoScalingThresholds withMemoryThreshold(Double memoryThreshold) {
this.memoryThreshold = memoryThreshold;
return this;
}
/**
* The load threshold. For more information about how load is computed,
* see <a href="http://en.wikipedia.org/wiki/Load_%28computing%29">Load
* (computing)</a>.
*
* @return The load threshold. For more information about how load is computed,
* see <a href="http://en.wikipedia.org/wiki/Load_%28computing%29">Load
* (computing)</a>.
*/
public Double getLoadThreshold() {
return loadThreshold;
}
/**
* The load threshold. For more information about how load is computed,
* see <a href="http://en.wikipedia.org/wiki/Load_%28computing%29">Load
* (computing)</a>.
*
* @param loadThreshold The load threshold. For more information about how load is computed,
* see <a href="http://en.wikipedia.org/wiki/Load_%28computing%29">Load
* (computing)</a>.
*/
public void setLoadThreshold(Double loadThreshold) {
this.loadThreshold = loadThreshold;
}
/**
* The load threshold. For more information about how load is computed,
* see <a href="http://en.wikipedia.org/wiki/Load_%28computing%29">Load
* (computing)</a>.
* <p>
* Returns a reference to this object so that method calls can be chained together.
*
* @param loadThreshold The load threshold. For more information about how load is computed,
* see <a href="http://en.wikipedia.org/wiki/Load_%28computing%29">Load
* (computing)</a>.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public AutoScalingThresholds withLoadThreshold(Double loadThreshold) {
this.loadThreshold = loadThreshold;
return this;
}
/**
* Returns a string representation of this object; useful for testing and
* debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getInstanceCount() != null) sb.append("InstanceCount: " + getInstanceCount() + ",");
if (getThresholdsWaitTime() != null) sb.append("ThresholdsWaitTime: " + getThresholdsWaitTime() + ",");
if (getIgnoreMetricsTime() != null) sb.append("IgnoreMetricsTime: " + getIgnoreMetricsTime() + ",");
if (getCpuThreshold() != null) sb.append("CpuThreshold: " + getCpuThreshold() + ",");
if (getMemoryThreshold() != null) sb.append("MemoryThreshold: " + getMemoryThreshold() + ",");
if (getLoadThreshold() != null) sb.append("LoadThreshold: " + getLoadThreshold() );
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getInstanceCount() == null) ? 0 : getInstanceCount().hashCode());
hashCode = prime * hashCode + ((getThresholdsWaitTime() == null) ? 0 : getThresholdsWaitTime().hashCode());
hashCode = prime * hashCode + ((getIgnoreMetricsTime() == null) ? 0 : getIgnoreMetricsTime().hashCode());
hashCode = prime * hashCode + ((getCpuThreshold() == null) ? 0 : getCpuThreshold().hashCode());
hashCode = prime * hashCode + ((getMemoryThreshold() == null) ? 0 : getMemoryThreshold().hashCode());
hashCode = prime * hashCode + ((getLoadThreshold() == null) ? 0 : getLoadThreshold().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof AutoScalingThresholds == false) return false;
AutoScalingThresholds other = (AutoScalingThresholds)obj;
if (other.getInstanceCount() == null ^ this.getInstanceCount() == null) return false;
if (other.getInstanceCount() != null && other.getInstanceCount().equals(this.getInstanceCount()) == false) return false;
if (other.getThresholdsWaitTime() == null ^ this.getThresholdsWaitTime() == null) return false;
if (other.getThresholdsWaitTime() != null && other.getThresholdsWaitTime().equals(this.getThresholdsWaitTime()) == false) return false;
if (other.getIgnoreMetricsTime() == null ^ this.getIgnoreMetricsTime() == null) return false;
if (other.getIgnoreMetricsTime() != null && other.getIgnoreMetricsTime().equals(this.getIgnoreMetricsTime()) == false) return false;
if (other.getCpuThreshold() == null ^ this.getCpuThreshold() == null) return false;
if (other.getCpuThreshold() != null && other.getCpuThreshold().equals(this.getCpuThreshold()) == false) return false;
if (other.getMemoryThreshold() == null ^ this.getMemoryThreshold() == null) return false;
if (other.getMemoryThreshold() != null && other.getMemoryThreshold().equals(this.getMemoryThreshold()) == false) return false;
if (other.getLoadThreshold() == null ^ this.getLoadThreshold() == null) return false;
if (other.getLoadThreshold() != null && other.getLoadThreshold().equals(this.getLoadThreshold()) == false) return false;
return true;
}
}