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

com.amazonaws.services.ec2.model.ReservedInstancesListing 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.9.19
Show newest version
/*
 * Copyright 2010-2016 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 listing. *

*/ public class ReservedInstancesListing implements Serializable, Cloneable { /** *

* The ID of the Reserved Instance listing. *

*/ private String reservedInstancesListingId; /** *

* The ID of the Reserved Instance. *

*/ private String reservedInstancesId; /** *

* The time the listing was created. *

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

* The last modified timestamp of the listing. *

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

* The status of the Reserved Instance listing. *

*/ private String status; /** *

* The reason for the current status of the Reserved Instance listing. The * response can be blank. *

*/ private String statusMessage; /** *

* The number of instances in this state. *

*/ private com.amazonaws.internal.SdkInternalList instanceCounts; /** *

* The price of the Reserved Instance listing. *

*/ private com.amazonaws.internal.SdkInternalList priceSchedules; /** *

* Any tags assigned to the resource. *

*/ private com.amazonaws.internal.SdkInternalList tags; /** *

* A unique, case-sensitive key supplied by the client to ensure that the * request is idempotent. For more information, see Ensuring Idempotency. *

*/ private String clientToken; /** *

* The ID of the Reserved Instance listing. *

* * @param reservedInstancesListingId * The ID of the Reserved Instance listing. */ public void setReservedInstancesListingId(String reservedInstancesListingId) { this.reservedInstancesListingId = reservedInstancesListingId; } /** *

* The ID of the Reserved Instance listing. *

* * @return The ID of the Reserved Instance listing. */ public String getReservedInstancesListingId() { return this.reservedInstancesListingId; } /** *

* The ID of the Reserved Instance listing. *

* * @param reservedInstancesListingId * The ID of the Reserved Instance listing. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReservedInstancesListing withReservedInstancesListingId( String reservedInstancesListingId) { setReservedInstancesListingId(reservedInstancesListingId); return this; } /** *

* The ID of the Reserved Instance. *

* * @param reservedInstancesId * The ID of the Reserved Instance. */ public void setReservedInstancesId(String reservedInstancesId) { this.reservedInstancesId = reservedInstancesId; } /** *

* The ID of the Reserved Instance. *

* * @return The ID of the Reserved Instance. */ public String getReservedInstancesId() { return this.reservedInstancesId; } /** *

* The ID of the Reserved Instance. *

* * @param reservedInstancesId * The ID of the Reserved Instance. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReservedInstancesListing withReservedInstancesId( String reservedInstancesId) { setReservedInstancesId(reservedInstancesId); return this; } /** *

* The time the listing was created. *

* * @param createDate * The time the listing was created. */ public void setCreateDate(java.util.Date createDate) { this.createDate = createDate; } /** *

* The time the listing was created. *

* * @return The time the listing was created. */ public java.util.Date getCreateDate() { return this.createDate; } /** *

* The time the listing was created. *

* * @param createDate * The time the listing was created. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReservedInstancesListing withCreateDate(java.util.Date createDate) { setCreateDate(createDate); return this; } /** *

* The last modified timestamp of the listing. *

* * @param updateDate * The last modified timestamp of the listing. */ public void setUpdateDate(java.util.Date updateDate) { this.updateDate = updateDate; } /** *

* The last modified timestamp of the listing. *

* * @return The last modified timestamp of the listing. */ public java.util.Date getUpdateDate() { return this.updateDate; } /** *

* The last modified timestamp of the listing. *

* * @param updateDate * The last modified timestamp of the listing. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReservedInstancesListing withUpdateDate(java.util.Date updateDate) { setUpdateDate(updateDate); return this; } /** *

* The status of the Reserved Instance listing. *

* * @param status * The status of the Reserved Instance listing. * @see ListingStatus */ public void setStatus(String status) { this.status = status; } /** *

* The status of the Reserved Instance listing. *

* * @return The status of the Reserved Instance listing. * @see ListingStatus */ public String getStatus() { return this.status; } /** *

* The status of the Reserved Instance listing. *

* * @param status * The status of the Reserved Instance listing. * @return Returns a reference to this object so that method calls can be * chained together. * @see ListingStatus */ public ReservedInstancesListing withStatus(String status) { setStatus(status); return this; } /** *

* The status of the Reserved Instance listing. *

* * @param status * The status of the Reserved Instance listing. * @see ListingStatus */ public void setStatus(ListingStatus status) { this.status = status.toString(); } /** *

* The status of the Reserved Instance listing. *

* * @param status * The status of the Reserved Instance listing. * @return Returns a reference to this object so that method calls can be * chained together. * @see ListingStatus */ public ReservedInstancesListing withStatus(ListingStatus status) { setStatus(status); return this; } /** *

* The reason for the current status of the Reserved Instance listing. The * response can be blank. *

* * @param statusMessage * The reason for the current status of the Reserved Instance * listing. The response can be blank. */ public void setStatusMessage(String statusMessage) { this.statusMessage = statusMessage; } /** *

* The reason for the current status of the Reserved Instance listing. The * response can be blank. *

* * @return The reason for the current status of the Reserved Instance * listing. The response can be blank. */ public String getStatusMessage() { return this.statusMessage; } /** *

* The reason for the current status of the Reserved Instance listing. The * response can be blank. *

* * @param statusMessage * The reason for the current status of the Reserved Instance * listing. The response can be blank. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReservedInstancesListing withStatusMessage(String statusMessage) { setStatusMessage(statusMessage); return this; } /** *

* The number of instances in this state. *

* * @return The number of instances in this state. */ public java.util.List getInstanceCounts() { if (instanceCounts == null) { instanceCounts = new com.amazonaws.internal.SdkInternalList(); } return instanceCounts; } /** *

* The number of instances in this state. *

* * @param instanceCounts * The number of instances in this state. */ public void setInstanceCounts( java.util.Collection instanceCounts) { if (instanceCounts == null) { this.instanceCounts = null; return; } this.instanceCounts = new com.amazonaws.internal.SdkInternalList( instanceCounts); } /** *

* The number of instances in this state. *

*

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setInstanceCounts(java.util.Collection)} or * {@link #withInstanceCounts(java.util.Collection)} if you want to override * the existing values. *

* * @param instanceCounts * The number of instances in this state. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReservedInstancesListing withInstanceCounts( InstanceCount... instanceCounts) { if (this.instanceCounts == null) { setInstanceCounts(new com.amazonaws.internal.SdkInternalList( instanceCounts.length)); } for (InstanceCount ele : instanceCounts) { this.instanceCounts.add(ele); } return this; } /** *

* The number of instances in this state. *

* * @param instanceCounts * The number of instances in this state. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReservedInstancesListing withInstanceCounts( java.util.Collection instanceCounts) { setInstanceCounts(instanceCounts); return this; } /** *

* The price of the Reserved Instance listing. *

* * @return The price of the Reserved Instance listing. */ public java.util.List getPriceSchedules() { if (priceSchedules == null) { priceSchedules = new com.amazonaws.internal.SdkInternalList(); } return priceSchedules; } /** *

* The price of the Reserved Instance listing. *

* * @param priceSchedules * The price of the Reserved Instance listing. */ public void setPriceSchedules( java.util.Collection priceSchedules) { if (priceSchedules == null) { this.priceSchedules = null; return; } this.priceSchedules = new com.amazonaws.internal.SdkInternalList( priceSchedules); } /** *

* The price of the Reserved Instance listing. *

*

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setPriceSchedules(java.util.Collection)} or * {@link #withPriceSchedules(java.util.Collection)} if you want to override * the existing values. *

* * @param priceSchedules * The price of the Reserved Instance listing. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReservedInstancesListing withPriceSchedules( PriceSchedule... priceSchedules) { if (this.priceSchedules == null) { setPriceSchedules(new com.amazonaws.internal.SdkInternalList( priceSchedules.length)); } for (PriceSchedule ele : priceSchedules) { this.priceSchedules.add(ele); } return this; } /** *

* The price of the Reserved Instance listing. *

* * @param priceSchedules * The price of the Reserved Instance listing. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReservedInstancesListing withPriceSchedules( java.util.Collection priceSchedules) { setPriceSchedules(priceSchedules); return this; } /** *

* Any tags assigned to the resource. *

* * @return Any tags assigned to the resource. */ public java.util.List getTags() { if (tags == null) { tags = new com.amazonaws.internal.SdkInternalList(); } return tags; } /** *

* Any tags assigned to the resource. *

* * @param tags * Any tags assigned to the resource. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new com.amazonaws.internal.SdkInternalList(tags); } /** *

* Any tags assigned to the resource. *

*

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setTags(java.util.Collection)} or * {@link #withTags(java.util.Collection)} if you want to override the * existing values. *

* * @param tags * Any tags assigned to the resource. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReservedInstancesListing withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* Any tags assigned to the resource. *

* * @param tags * Any tags assigned to the resource. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReservedInstancesListing withTags(java.util.Collection tags) { setTags(tags); return this; } /** *

* A unique, case-sensitive key supplied by the client to ensure that the * request is idempotent. For more information, see Ensuring Idempotency. *

* * @param clientToken * A unique, case-sensitive key supplied by the client to ensure that * the request is idempotent. For more information, see Ensuring Idempotency. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** *

* A unique, case-sensitive key supplied by the client to ensure that the * request is idempotent. For more information, see Ensuring Idempotency. *

* * @return A unique, case-sensitive key supplied by the client to ensure * that the request is idempotent. For more information, see Ensuring Idempotency. */ public String getClientToken() { return this.clientToken; } /** *

* A unique, case-sensitive key supplied by the client to ensure that the * request is idempotent. For more information, see Ensuring Idempotency. *

* * @param clientToken * A unique, case-sensitive key supplied by the client to ensure that * the request is idempotent. For more information, see Ensuring Idempotency. * @return Returns a reference to this object so that method calls can be * chained together. */ public ReservedInstancesListing withClientToken(String clientToken) { setClientToken(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 (getReservedInstancesListingId() != null) sb.append("ReservedInstancesListingId: " + getReservedInstancesListingId() + ","); if (getReservedInstancesId() != null) sb.append("ReservedInstancesId: " + getReservedInstancesId() + ","); if (getCreateDate() != null) sb.append("CreateDate: " + getCreateDate() + ","); if (getUpdateDate() != null) sb.append("UpdateDate: " + getUpdateDate() + ","); if (getStatus() != null) sb.append("Status: " + getStatus() + ","); if (getStatusMessage() != null) sb.append("StatusMessage: " + getStatusMessage() + ","); if (getInstanceCounts() != null) sb.append("InstanceCounts: " + getInstanceCounts() + ","); if (getPriceSchedules() != null) sb.append("PriceSchedules: " + getPriceSchedules() + ","); if (getTags() != null) sb.append("Tags: " + getTags() + ","); if (getClientToken() != null) sb.append("ClientToken: " + getClientToken()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ReservedInstancesListing == false) return false; ReservedInstancesListing other = (ReservedInstancesListing) obj; if (other.getReservedInstancesListingId() == null ^ this.getReservedInstancesListingId() == null) return false; if (other.getReservedInstancesListingId() != null && other.getReservedInstancesListingId().equals( this.getReservedInstancesListingId()) == false) return false; if (other.getReservedInstancesId() == null ^ this.getReservedInstancesId() == null) return false; if (other.getReservedInstancesId() != null && other.getReservedInstancesId().equals( this.getReservedInstancesId()) == 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.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.getInstanceCounts() == null ^ this.getInstanceCounts() == null) return false; if (other.getInstanceCounts() != null && other.getInstanceCounts().equals(this.getInstanceCounts()) == false) return false; if (other.getPriceSchedules() == null ^ this.getPriceSchedules() == null) return false; if (other.getPriceSchedules() != null && other.getPriceSchedules().equals(this.getPriceSchedules()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == 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; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getReservedInstancesListingId() == null) ? 0 : getReservedInstancesListingId().hashCode()); hashCode = prime * hashCode + ((getReservedInstancesId() == null) ? 0 : getReservedInstancesId().hashCode()); hashCode = prime * hashCode + ((getCreateDate() == null) ? 0 : getCreateDate().hashCode()); hashCode = prime * hashCode + ((getUpdateDate() == null) ? 0 : getUpdateDate().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getStatusMessage() == null) ? 0 : getStatusMessage() .hashCode()); hashCode = prime * hashCode + ((getInstanceCounts() == null) ? 0 : getInstanceCounts() .hashCode()); hashCode = prime * hashCode + ((getPriceSchedules() == null) ? 0 : getPriceSchedules() .hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode()); return hashCode; } @Override public ReservedInstancesListing clone() { try { return (ReservedInstancesListing) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy