com.amazonaws.services.ec2.model.ReservedInstancesModification Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* Copyright 2010-2014 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;
/**
*
* Describes a Reserved Instance modification.
*
*/
public class ReservedInstancesModification implements Serializable {
/**
* A unique ID for the Reserved Instance modification.
*/
private String reservedInstancesModificationId;
/**
* The IDs of one or more Reserved Instances.
*/
private com.amazonaws.internal.ListWithAutoConstructFlag reservedInstancesIds;
/**
* Contains target configurations along with their corresponding new
* Reserved Instance IDs.
*/
private com.amazonaws.internal.ListWithAutoConstructFlag modificationResults;
/**
* The time when the modification request was created.
*/
private java.util.Date createDate;
/**
* The time when the modification request was last updated.
*/
private java.util.Date updateDate;
/**
* The time for the modification to become effective.
*/
private java.util.Date effectiveDate;
/**
* The status of the Reserved Instances modification request.
*/
private String status;
/**
* The reason for the status.
*/
private String statusMessage;
/**
* A unique, case-sensitive key supplied by the client to ensure that the
* modification request is idempotent.
*/
private String clientToken;
/**
* A unique ID for the Reserved Instance modification.
*
* @return A unique ID for the Reserved Instance modification.
*/
public String getReservedInstancesModificationId() {
return reservedInstancesModificationId;
}
/**
* A unique ID for the Reserved Instance modification.
*
* @param reservedInstancesModificationId A unique ID for the Reserved Instance modification.
*/
public void setReservedInstancesModificationId(String reservedInstancesModificationId) {
this.reservedInstancesModificationId = reservedInstancesModificationId;
}
/**
* A unique ID for the Reserved Instance modification.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param reservedInstancesModificationId A unique ID for the Reserved Instance modification.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ReservedInstancesModification withReservedInstancesModificationId(String reservedInstancesModificationId) {
this.reservedInstancesModificationId = reservedInstancesModificationId;
return this;
}
/**
* The IDs of one or more Reserved Instances.
*
* @return The IDs of one or more Reserved Instances.
*/
public java.util.List getReservedInstancesIds() {
if (reservedInstancesIds == null) {
reservedInstancesIds = new com.amazonaws.internal.ListWithAutoConstructFlag();
reservedInstancesIds.setAutoConstruct(true);
}
return reservedInstancesIds;
}
/**
* The IDs of one or more Reserved Instances.
*
* @param reservedInstancesIds The IDs of one or more Reserved Instances.
*/
public void setReservedInstancesIds(java.util.Collection reservedInstancesIds) {
if (reservedInstancesIds == null) {
this.reservedInstancesIds = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag reservedInstancesIdsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(reservedInstancesIds.size());
reservedInstancesIdsCopy.addAll(reservedInstancesIds);
this.reservedInstancesIds = reservedInstancesIdsCopy;
}
/**
* The IDs of one or more Reserved Instances.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param reservedInstancesIds The IDs of one or more Reserved Instances.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ReservedInstancesModification withReservedInstancesIds(ReservedInstancesId... reservedInstancesIds) {
if (getReservedInstancesIds() == null) setReservedInstancesIds(new java.util.ArrayList(reservedInstancesIds.length));
for (ReservedInstancesId value : reservedInstancesIds) {
getReservedInstancesIds().add(value);
}
return this;
}
/**
* The IDs of one or more Reserved Instances.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param reservedInstancesIds The IDs of one or more Reserved Instances.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ReservedInstancesModification withReservedInstancesIds(java.util.Collection reservedInstancesIds) {
if (reservedInstancesIds == null) {
this.reservedInstancesIds = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag reservedInstancesIdsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(reservedInstancesIds.size());
reservedInstancesIdsCopy.addAll(reservedInstancesIds);
this.reservedInstancesIds = reservedInstancesIdsCopy;
}
return this;
}
/**
* Contains target configurations along with their corresponding new
* Reserved Instance IDs.
*
* @return Contains target configurations along with their corresponding new
* Reserved Instance IDs.
*/
public java.util.List getModificationResults() {
if (modificationResults == null) {
modificationResults = new com.amazonaws.internal.ListWithAutoConstructFlag();
modificationResults.setAutoConstruct(true);
}
return modificationResults;
}
/**
* Contains target configurations along with their corresponding new
* Reserved Instance IDs.
*
* @param modificationResults Contains target configurations along with their corresponding new
* Reserved Instance IDs.
*/
public void setModificationResults(java.util.Collection modificationResults) {
if (modificationResults == null) {
this.modificationResults = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag modificationResultsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(modificationResults.size());
modificationResultsCopy.addAll(modificationResults);
this.modificationResults = modificationResultsCopy;
}
/**
* Contains target configurations along with their corresponding new
* Reserved Instance IDs.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param modificationResults Contains target configurations along with their corresponding new
* Reserved Instance IDs.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ReservedInstancesModification withModificationResults(ReservedInstancesModificationResult... modificationResults) {
if (getModificationResults() == null) setModificationResults(new java.util.ArrayList(modificationResults.length));
for (ReservedInstancesModificationResult value : modificationResults) {
getModificationResults().add(value);
}
return this;
}
/**
* Contains target configurations along with their corresponding new
* Reserved Instance IDs.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param modificationResults Contains target configurations along with their corresponding new
* Reserved Instance IDs.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ReservedInstancesModification withModificationResults(java.util.Collection modificationResults) {
if (modificationResults == null) {
this.modificationResults = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag modificationResultsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(modificationResults.size());
modificationResultsCopy.addAll(modificationResults);
this.modificationResults = modificationResultsCopy;
}
return this;
}
/**
* The time when the modification request was created.
*
* @return The time when the modification request was created.
*/
public java.util.Date getCreateDate() {
return createDate;
}
/**
* The time when the modification request was created.
*
* @param createDate The time when the modification request was created.
*/
public void setCreateDate(java.util.Date createDate) {
this.createDate = createDate;
}
/**
* The time when the modification request was created.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param createDate The time when the modification request was created.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ReservedInstancesModification withCreateDate(java.util.Date createDate) {
this.createDate = createDate;
return this;
}
/**
* The time when the modification request was last updated.
*
* @return The time when the modification request was last updated.
*/
public java.util.Date getUpdateDate() {
return updateDate;
}
/**
* The time when the modification request was last updated.
*
* @param updateDate The time when the modification request was last updated.
*/
public void setUpdateDate(java.util.Date updateDate) {
this.updateDate = updateDate;
}
/**
* The time when the modification request was last updated.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param updateDate The time when the modification request was last updated.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ReservedInstancesModification withUpdateDate(java.util.Date updateDate) {
this.updateDate = updateDate;
return this;
}
/**
* The time for the modification to become effective.
*
* @return The time for the modification to become effective.
*/
public java.util.Date getEffectiveDate() {
return effectiveDate;
}
/**
* The time for the modification to become effective.
*
* @param effectiveDate The time for the modification to become effective.
*/
public void setEffectiveDate(java.util.Date effectiveDate) {
this.effectiveDate = effectiveDate;
}
/**
* The time for the modification to become effective.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param effectiveDate The time for the modification to become effective.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ReservedInstancesModification withEffectiveDate(java.util.Date effectiveDate) {
this.effectiveDate = effectiveDate;
return this;
}
/**
* The status of the Reserved Instances modification request.
*
* @return The status of the Reserved Instances modification request.
*/
public String getStatus() {
return status;
}
/**
* The status of the Reserved Instances modification request.
*
* @param status The status of the Reserved Instances modification request.
*/
public void setStatus(String status) {
this.status = status;
}
/**
* The status of the Reserved Instances modification request.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param status The status of the Reserved Instances modification request.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ReservedInstancesModification withStatus(String status) {
this.status = status;
return this;
}
/**
* The reason for the status.
*
* @return The reason for the status.
*/
public String getStatusMessage() {
return statusMessage;
}
/**
* The reason for the status.
*
* @param statusMessage The reason for the status.
*/
public void setStatusMessage(String statusMessage) {
this.statusMessage = statusMessage;
}
/**
* The reason for the status.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param statusMessage The reason for the status.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ReservedInstancesModification withStatusMessage(String statusMessage) {
this.statusMessage = statusMessage;
return this;
}
/**
* A unique, case-sensitive key supplied by the client to ensure that the
* modification request is idempotent.
*
* @return A unique, case-sensitive key supplied by the client to ensure that the
* modification request is idempotent.
*/
public String getClientToken() {
return clientToken;
}
/**
* A unique, case-sensitive key supplied by the client to ensure that the
* modification request is idempotent.
*
* @param clientToken A unique, case-sensitive key supplied by the client to ensure that the
* modification request is idempotent.
*/
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
}
/**
* A unique, case-sensitive key supplied by the client to ensure that the
* modification request is idempotent.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param clientToken A unique, case-sensitive key supplied by the client to ensure that the
* modification request is idempotent.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ReservedInstancesModification withClientToken(String clientToken) {
this.clientToken = clientToken;
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 (getReservedInstancesModificationId() != null) sb.append("ReservedInstancesModificationId: " + getReservedInstancesModificationId() + ",");
if (getReservedInstancesIds() != null) sb.append("ReservedInstancesIds: " + getReservedInstancesIds() + ",");
if (getModificationResults() != null) sb.append("ModificationResults: " + getModificationResults() + ",");
if (getCreateDate() != null) sb.append("CreateDate: " + getCreateDate() + ",");
if (getUpdateDate() != null) sb.append("UpdateDate: " + getUpdateDate() + ",");
if (getEffectiveDate() != null) sb.append("EffectiveDate: " + getEffectiveDate() + ",");
if (getStatus() != null) sb.append("Status: " + getStatus() + ",");
if (getStatusMessage() != null) sb.append("StatusMessage: " + getStatusMessage() + ",");
if (getClientToken() != null) sb.append("ClientToken: " + getClientToken() );
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getReservedInstancesModificationId() == null) ? 0 : getReservedInstancesModificationId().hashCode());
hashCode = prime * hashCode + ((getReservedInstancesIds() == null) ? 0 : getReservedInstancesIds().hashCode());
hashCode = prime * hashCode + ((getModificationResults() == null) ? 0 : getModificationResults().hashCode());
hashCode = prime * hashCode + ((getCreateDate() == null) ? 0 : getCreateDate().hashCode());
hashCode = prime * hashCode + ((getUpdateDate() == null) ? 0 : getUpdateDate().hashCode());
hashCode = prime * hashCode + ((getEffectiveDate() == null) ? 0 : getEffectiveDate().hashCode());
hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode());
hashCode = prime * hashCode + ((getStatusMessage() == null) ? 0 : getStatusMessage().hashCode());
hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof ReservedInstancesModification == false) return false;
ReservedInstancesModification other = (ReservedInstancesModification)obj;
if (other.getReservedInstancesModificationId() == null ^ this.getReservedInstancesModificationId() == null) return false;
if (other.getReservedInstancesModificationId() != null && other.getReservedInstancesModificationId().equals(this.getReservedInstancesModificationId()) == false) return false;
if (other.getReservedInstancesIds() == null ^ this.getReservedInstancesIds() == null) return false;
if (other.getReservedInstancesIds() != null && other.getReservedInstancesIds().equals(this.getReservedInstancesIds()) == false) return false;
if (other.getModificationResults() == null ^ this.getModificationResults() == null) return false;
if (other.getModificationResults() != null && other.getModificationResults().equals(this.getModificationResults()) == false) return false;
if (other.getCreateDate() == null ^ this.getCreateDate() == null) return false;
if (other.getCreateDate() != null && other.getCreateDate().equals(this.getCreateDate()) == false) return false;
if (other.getUpdateDate() == null ^ this.getUpdateDate() == null) return false;
if (other.getUpdateDate() != null && other.getUpdateDate().equals(this.getUpdateDate()) == false) return false;
if (other.getEffectiveDate() == null ^ this.getEffectiveDate() == null) return false;
if (other.getEffectiveDate() != null && other.getEffectiveDate().equals(this.getEffectiveDate()) == false) return false;
if (other.getStatus() == null ^ this.getStatus() == null) return false;
if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false;
if (other.getStatusMessage() == null ^ this.getStatusMessage() == null) return false;
if (other.getStatusMessage() != null && other.getStatusMessage().equals(this.getStatusMessage()) == false) return false;
if (other.getClientToken() == null ^ this.getClientToken() == null) return false;
if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false) return false;
return true;
}
}