All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.ec2.model.BundleTask Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon EC2 module holds the client classes that are used for communicating with Amazon EC2 Service

There is a newer version: 1.12.765
Show newest version
/*
 * Copyright 2014-2019 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;
import javax.annotation.Generated;

/**
 * 

* Describes a bundle task. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class BundleTask implements Serializable, Cloneable { /** *

* The ID of the bundle task. *

*/ private String bundleId; /** *

* If the task fails, a description of the error. *

*/ private BundleTaskError bundleTaskError; /** *

* The ID of the instance associated with this bundle task. *

*/ private String instanceId; /** *

* The level of task completion, as a percent (for example, 20%). *

*/ private String progress; /** *

* The time this task started. *

*/ private java.util.Date startTime; /** *

* The state of the task. *

*/ private String state; /** *

* The Amazon S3 storage locations. *

*/ private Storage storage; /** *

* The time of the most recent update for the task. *

*/ private java.util.Date updateTime; /** *

* The ID of the bundle task. *

* * @param bundleId * The ID of the bundle task. */ public void setBundleId(String bundleId) { this.bundleId = bundleId; } /** *

* The ID of the bundle task. *

* * @return The ID of the bundle task. */ public String getBundleId() { return this.bundleId; } /** *

* The ID of the bundle task. *

* * @param bundleId * The ID of the bundle task. * @return Returns a reference to this object so that method calls can be chained together. */ public BundleTask withBundleId(String bundleId) { setBundleId(bundleId); return this; } /** *

* 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. *

* * @return If the task fails, a description of the error. */ public BundleTaskError getBundleTaskError() { return this.bundleTaskError; } /** *

* If the task fails, a description of the error. *

* * @param bundleTaskError * If the task fails, a description of the error. * @return Returns a reference to this object so that method calls can be chained together. */ public BundleTask withBundleTaskError(BundleTaskError bundleTaskError) { setBundleTaskError(bundleTaskError); return this; } /** *

* The ID of the instance associated with this bundle task. *

* * @param instanceId * The ID of the instance associated with this bundle task. */ public void setInstanceId(String instanceId) { this.instanceId = instanceId; } /** *

* The ID of the instance associated with this bundle task. *

* * @return The ID of the instance associated with this bundle task. */ public String getInstanceId() { return this.instanceId; } /** *

* The ID of the instance associated with this bundle task. *

* * @param instanceId * The ID of the instance associated with this bundle task. * @return Returns a reference to this object so that method calls can be chained together. */ public BundleTask withInstanceId(String instanceId) { setInstanceId(instanceId); return this; } /** *

* The level of task completion, as a percent (for example, 20%). *

* * @param progress * The level of task completion, as a percent (for example, 20%). */ public void setProgress(String progress) { this.progress = progress; } /** *

* The level of task completion, as a percent (for example, 20%). *

* * @return The level of task completion, as a percent (for example, 20%). */ public String getProgress() { return this.progress; } /** *

* The level of task completion, as a percent (for example, 20%). *

* * @param progress * The level of task completion, as a percent (for example, 20%). * @return Returns a reference to this object so that method calls can be chained together. */ public BundleTask withProgress(String progress) { setProgress(progress); return this; } /** *

* 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. *

* * @return The time this task started. */ public java.util.Date getStartTime() { return this.startTime; } /** *

* The time this task started. *

* * @param startTime * The time this task started. * @return Returns a reference to this object so that method calls can be chained together. */ public BundleTask withStartTime(java.util.Date startTime) { setStartTime(startTime); return this; } /** *

* The state of the task. *

* * @param state * The state of the task. * @see BundleTaskState */ public void setState(String state) { this.state = state; } /** *

* The state of the task. *

* * @return The state of the task. * @see BundleTaskState */ public String getState() { return this.state; } /** *

* The state of the task. *

* * @param state * The state of the task. * @return Returns a reference to this object so that method calls can be chained together. * @see BundleTaskState */ public BundleTask withState(String state) { setState(state); return this; } /** *

* The state of the task. *

* * @param state * The state of the task. * @see BundleTaskState */ public void setState(BundleTaskState state) { withState(state); } /** *

* The state of the task. *

* * @param state * The state of the task. * @return Returns a reference to this object so that method calls can be chained together. * @see BundleTaskState */ public BundleTask withState(BundleTaskState state) { this.state = state.toString(); return this; } /** *

* The Amazon S3 storage locations. *

* * @param storage * The Amazon S3 storage locations. */ public void setStorage(Storage storage) { this.storage = storage; } /** *

* The Amazon S3 storage locations. *

* * @return The Amazon S3 storage locations. */ public Storage getStorage() { return this.storage; } /** *

* The Amazon S3 storage locations. *

* * @param storage * The Amazon S3 storage locations. * @return Returns a reference to this object so that method calls can be chained together. */ public BundleTask withStorage(Storage storage) { setStorage(storage); return this; } /** *

* 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. *

* * @return The time of the most recent update for the task. */ public java.util.Date getUpdateTime() { return this.updateTime; } /** *

* The time of the most recent update for the task. *

* * @param updateTime * The time of the most recent update for the task. * @return Returns a reference to this object so that method calls can be chained together. */ public BundleTask withUpdateTime(java.util.Date updateTime) { setUpdateTime(updateTime); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getBundleId() != null) sb.append("BundleId: ").append(getBundleId()).append(","); if (getBundleTaskError() != null) sb.append("BundleTaskError: ").append(getBundleTaskError()).append(","); if (getInstanceId() != null) sb.append("InstanceId: ").append(getInstanceId()).append(","); if (getProgress() != null) sb.append("Progress: ").append(getProgress()).append(","); if (getStartTime() != null) sb.append("StartTime: ").append(getStartTime()).append(","); if (getState() != null) sb.append("State: ").append(getState()).append(","); if (getStorage() != null) sb.append("Storage: ").append(getStorage()).append(","); if (getUpdateTime() != null) sb.append("UpdateTime: ").append(getUpdateTime()); sb.append("}"); return sb.toString(); } @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.getBundleId() == null ^ this.getBundleId() == null) return false; if (other.getBundleId() != null && other.getBundleId().equals(this.getBundleId()) == false) return false; if (other.getBundleTaskError() == null ^ this.getBundleTaskError() == null) return false; if (other.getBundleTaskError() != null && other.getBundleTaskError().equals(this.getBundleTaskError()) == false) return false; if (other.getInstanceId() == null ^ this.getInstanceId() == null) return false; if (other.getInstanceId() != null && other.getInstanceId().equals(this.getInstanceId()) == 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.getStartTime() == null ^ this.getStartTime() == null) return false; if (other.getStartTime() != null && other.getStartTime().equals(this.getStartTime()) == 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.getStorage() == null ^ this.getStorage() == null) return false; if (other.getStorage() != null && other.getStorage().equals(this.getStorage()) == false) return false; if (other.getUpdateTime() == null ^ this.getUpdateTime() == null) return false; if (other.getUpdateTime() != null && other.getUpdateTime().equals(this.getUpdateTime()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getBundleId() == null) ? 0 : getBundleId().hashCode()); hashCode = prime * hashCode + ((getBundleTaskError() == null) ? 0 : getBundleTaskError().hashCode()); hashCode = prime * hashCode + ((getInstanceId() == null) ? 0 : getInstanceId().hashCode()); hashCode = prime * hashCode + ((getProgress() == null) ? 0 : getProgress().hashCode()); hashCode = prime * hashCode + ((getStartTime() == null) ? 0 : getStartTime().hashCode()); hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode()); hashCode = prime * hashCode + ((getStorage() == null) ? 0 : getStorage().hashCode()); hashCode = prime * hashCode + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode()); return hashCode; } @Override public BundleTask clone() { try { return (BundleTask) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy