forked from aws/aws-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBundleTask.java
More file actions
459 lines (406 loc) · 14.2 KB
/
BundleTask.java
File metadata and controls
459 lines (406 loc) · 14.2 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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
/*
* 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.ec2.model;
import java.io.Serializable;
/**
* <p>
* Represents a task to bundle an EC2 Windows instance into a new image.
* </p>
*/
public class BundleTask implements Serializable {
/**
* Instance associated with this bundle task.
*/
private String instanceId;
/**
* Unique identifier for this task.
*/
private String bundleId;
/**
* The state of this task.
* <p>
* <b>Constraints:</b><br/>
* <b>Allowed Values: </b>pending, waiting-for-shutdown, bundling, storing, cancelling, complete, failed
*/
private String state;
/**
* The time this task started.
*/
private java.util.Date startTime;
/**
* The time of the most recent update for the task.
*/
private java.util.Date updateTime;
/**
* Amazon S3 storage locations.
*/
private Storage storage;
/**
* The level of task completion, in percent (e.g., 20%).
*/
private String progress;
/**
* If the task fails, a description of the error.
*/
private BundleTaskError bundleTaskError;
/**
* Instance associated with this bundle task.
*
* @return Instance associated with this bundle task.
*/
public String getInstanceId() {
return instanceId;
}
/**
* Instance associated with this bundle task.
*
* @param instanceId Instance associated with this bundle task.
*/
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
/**
* Instance associated with this bundle task.
* <p>
* Returns a reference to this object so that method calls can be chained together.
*
* @param instanceId Instance associated with this bundle task.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public BundleTask withInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
/**
* Unique identifier for this task.
*
* @return Unique identifier for this task.
*/
public String getBundleId() {
return bundleId;
}
/**
* Unique identifier for this task.
*
* @param bundleId Unique identifier for this task.
*/
public void setBundleId(String bundleId) {
this.bundleId = bundleId;
}
/**
* Unique identifier for this task.
* <p>
* Returns a reference to this object so that method calls can be chained together.
*
* @param bundleId Unique identifier for this task.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public BundleTask withBundleId(String bundleId) {
this.bundleId = bundleId;
return this;
}
/**
* The state of this task.
* <p>
* <b>Constraints:</b><br/>
* <b>Allowed Values: </b>pending, waiting-for-shutdown, bundling, storing, cancelling, complete, failed
*
* @return The state of this task.
*
* @see BundleTaskState
*/
public String getState() {
return state;
}
/**
* The state of this task.
* <p>
* <b>Constraints:</b><br/>
* <b>Allowed Values: </b>pending, waiting-for-shutdown, bundling, storing, cancelling, complete, failed
*
* @param state The state of this task.
*
* @see BundleTaskState
*/
public void setState(String state) {
this.state = state;
}
/**
* The state of this task.
* <p>
* Returns a reference to this object so that method calls can be chained together.
* <p>
* <b>Constraints:</b><br/>
* <b>Allowed Values: </b>pending, waiting-for-shutdown, bundling, storing, cancelling, complete, failed
*
* @param state The state of this task.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*
* @see BundleTaskState
*/
public BundleTask withState(String state) {
this.state = state;
return this;
}
/**
* The state of this task.
* <p>
* <b>Constraints:</b><br/>
* <b>Allowed Values: </b>pending, waiting-for-shutdown, bundling, storing, cancelling, complete, failed
*
* @param state The state of this task.
*
* @see BundleTaskState
*/
public void setState(BundleTaskState state) {
this.state = state.toString();
}
/**
* The state of this task.
* <p>
* Returns a reference to this object so that method calls can be chained together.
* <p>
* <b>Constraints:</b><br/>
* <b>Allowed Values: </b>pending, waiting-for-shutdown, bundling, storing, cancelling, complete, failed
*
* @param state The state of this task.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*
* @see BundleTaskState
*/
public BundleTask withState(BundleTaskState state) {
this.state = state.toString();
return this;
}
/**
* The time this task started.
*
* @return The time this task started.
*/
public java.util.Date getStartTime() {
return startTime;
}
/**
* The time this task started.
*
* @param startTime The time this task started.
*/
public void setStartTime(java.util.Date startTime) {
this.startTime = startTime;
}
/**
* The time this task started.
* <p>
* Returns a reference to this object so that method calls can be chained together.
*
* @param startTime The time this task started.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public BundleTask withStartTime(java.util.Date startTime) {
this.startTime = startTime;
return this;
}
/**
* The time of the most recent update for the task.
*
* @return The time of the most recent update for the task.
*/
public java.util.Date getUpdateTime() {
return updateTime;
}
/**
* The time of the most recent update for the task.
*
* @param updateTime The time of the most recent update for the task.
*/
public void setUpdateTime(java.util.Date updateTime) {
this.updateTime = updateTime;
}
/**
* The time of the most recent update for the task.
* <p>
* Returns a reference to this object so that method calls can be chained together.
*
* @param updateTime The time of the most recent update for the task.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public BundleTask withUpdateTime(java.util.Date updateTime) {
this.updateTime = updateTime;
return this;
}
/**
* Amazon S3 storage locations.
*
* @return Amazon S3 storage locations.
*/
public Storage getStorage() {
return storage;
}
/**
* Amazon S3 storage locations.
*
* @param storage Amazon S3 storage locations.
*/
public void setStorage(Storage storage) {
this.storage = storage;
}
/**
* Amazon S3 storage locations.
* <p>
* Returns a reference to this object so that method calls can be chained together.
*
* @param storage Amazon S3 storage locations.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public BundleTask withStorage(Storage storage) {
this.storage = storage;
return this;
}
/**
* The level of task completion, in percent (e.g., 20%).
*
* @return The level of task completion, in percent (e.g., 20%).
*/
public String getProgress() {
return progress;
}
/**
* The level of task completion, in percent (e.g., 20%).
*
* @param progress The level of task completion, in percent (e.g., 20%).
*/
public void setProgress(String progress) {
this.progress = progress;
}
/**
* The level of task completion, in percent (e.g., 20%).
* <p>
* Returns a reference to this object so that method calls can be chained together.
*
* @param progress The level of task completion, in percent (e.g., 20%).
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public BundleTask withProgress(String progress) {
this.progress = progress;
return this;
}
/**
* If the task fails, a description of the error.
*
* @return If the task fails, a description of the error.
*/
public BundleTaskError getBundleTaskError() {
return bundleTaskError;
}
/**
* If the task fails, a description of the error.
*
* @param bundleTaskError If the task fails, a description of the error.
*/
public void setBundleTaskError(BundleTaskError bundleTaskError) {
this.bundleTaskError = bundleTaskError;
}
/**
* If the task fails, a description of the error.
* <p>
* Returns a reference to this object so that method calls can be chained together.
*
* @param bundleTaskError If the task fails, a description of the error.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public BundleTask withBundleTaskError(BundleTaskError bundleTaskError) {
this.bundleTaskError = bundleTaskError;
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 (getInstanceId() != null) sb.append("InstanceId: " + getInstanceId() + ",");
if (getBundleId() != null) sb.append("BundleId: " + getBundleId() + ",");
if (getState() != null) sb.append("State: " + getState() + ",");
if (getStartTime() != null) sb.append("StartTime: " + getStartTime() + ",");
if (getUpdateTime() != null) sb.append("UpdateTime: " + getUpdateTime() + ",");
if (getStorage() != null) sb.append("Storage: " + getStorage() + ",");
if (getProgress() != null) sb.append("Progress: " + getProgress() + ",");
if (getBundleTaskError() != null) sb.append("BundleTaskError: " + getBundleTaskError() );
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getInstanceId() == null) ? 0 : getInstanceId().hashCode());
hashCode = prime * hashCode + ((getBundleId() == null) ? 0 : getBundleId().hashCode());
hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode());
hashCode = prime * hashCode + ((getStartTime() == null) ? 0 : getStartTime().hashCode());
hashCode = prime * hashCode + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode());
hashCode = prime * hashCode + ((getStorage() == null) ? 0 : getStorage().hashCode());
hashCode = prime * hashCode + ((getProgress() == null) ? 0 : getProgress().hashCode());
hashCode = prime * hashCode + ((getBundleTaskError() == null) ? 0 : getBundleTaskError().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof BundleTask == false) return false;
BundleTask other = (BundleTask)obj;
if (other.getInstanceId() == null ^ this.getInstanceId() == null) return false;
if (other.getInstanceId() != null && other.getInstanceId().equals(this.getInstanceId()) == false) return false;
if (other.getBundleId() == null ^ this.getBundleId() == null) return false;
if (other.getBundleId() != null && other.getBundleId().equals(this.getBundleId()) == false) return false;
if (other.getState() == null ^ this.getState() == null) return false;
if (other.getState() != null && other.getState().equals(this.getState()) == false) return false;
if (other.getStartTime() == null ^ this.getStartTime() == null) return false;
if (other.getStartTime() != null && other.getStartTime().equals(this.getStartTime()) == false) return false;
if (other.getUpdateTime() == null ^ this.getUpdateTime() == null) return false;
if (other.getUpdateTime() != null && other.getUpdateTime().equals(this.getUpdateTime()) == false) return false;
if (other.getStorage() == null ^ this.getStorage() == null) return false;
if (other.getStorage() != null && other.getStorage().equals(this.getStorage()) == false) return false;
if (other.getProgress() == null ^ this.getProgress() == null) return false;
if (other.getProgress() != null && other.getProgress().equals(this.getProgress()) == false) return false;
if (other.getBundleTaskError() == null ^ this.getBundleTaskError() == null) return false;
if (other.getBundleTaskError() != null && other.getBundleTaskError().equals(this.getBundleTaskError()) == false) return false;
return true;
}
}