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

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

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-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 Spot instance request. *

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

* The ID of the Spot instance request. *

*/ private String spotInstanceRequestId; /** *

* The maximum hourly price (bid) for the Spot instance launched to fulfill * the request. *

*/ private String spotPrice; /** *

* The Spot instance request type. *

*/ private String type; /** *

* The state of the Spot instance request. Spot bid status information can * help you track your Spot instance requests. For more information, see Spot Bid Status in the Amazon Elastic Compute Cloud User * Guide. *

*/ private String state; /** *

* The fault codes for the Spot instance request, if any. *

*/ private SpotInstanceStateFault fault; /** *

* The status code and status message describing the Spot instance request. *

*/ private SpotInstanceStatus status; /** *

* The start date of the request, in UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). The * request becomes active at this date and time. *

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

* The end date of the request, in UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). If this * is a one-time request, it remains active until all instances launch, the * request is canceled, or this date is reached. If the request is * persistent, it remains active until it is canceled or this date is * reached. *

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

* The instance launch group. Launch groups are Spot instances that launch * together and terminate together. *

*/ private String launchGroup; /** *

* The Availability Zone group. If you specify the same Availability Zone * group for all Spot instance requests, all Spot instances are launched in * the same Availability Zone. *

*/ private String availabilityZoneGroup; /** *

* Additional information for launching instances. *

*/ private LaunchSpecification launchSpecification; /** *

* The instance ID, if an instance has been launched to fulfill the Spot * instance request. *

*/ private String instanceId; /** *

* The date and time when the Spot instance request was created, in UTC * format (for example, * YYYY-MM-DDTHH:MM:SSZ). *

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

* The product description associated with the Spot instance. *

*/ private String productDescription; /** *

* The duration for the Spot instance, in minutes. *

*/ private Integer blockDurationMinutes; /** *

* If you specified a duration and your Spot instance request was fulfilled, * this is the fixed hourly price in effect for the Spot instance while it * runs. *

*/ private String actualBlockHourlyPrice; /** *

* Any tags assigned to the resource. *

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

* The Availability Zone in which the bid is launched. *

*/ private String launchedAvailabilityZone; /** *

* The ID of the Spot instance request. *

* * @param spotInstanceRequestId * The ID of the Spot instance request. */ public void setSpotInstanceRequestId(String spotInstanceRequestId) { this.spotInstanceRequestId = spotInstanceRequestId; } /** *

* The ID of the Spot instance request. *

* * @return The ID of the Spot instance request. */ public String getSpotInstanceRequestId() { return this.spotInstanceRequestId; } /** *

* The ID of the Spot instance request. *

* * @param spotInstanceRequestId * The ID of the Spot instance request. * @return Returns a reference to this object so that method calls can be * chained together. */ public SpotInstanceRequest withSpotInstanceRequestId( String spotInstanceRequestId) { setSpotInstanceRequestId(spotInstanceRequestId); return this; } /** *

* The maximum hourly price (bid) for the Spot instance launched to fulfill * the request. *

* * @param spotPrice * The maximum hourly price (bid) for the Spot instance launched to * fulfill the request. */ public void setSpotPrice(String spotPrice) { this.spotPrice = spotPrice; } /** *

* The maximum hourly price (bid) for the Spot instance launched to fulfill * the request. *

* * @return The maximum hourly price (bid) for the Spot instance launched to * fulfill the request. */ public String getSpotPrice() { return this.spotPrice; } /** *

* The maximum hourly price (bid) for the Spot instance launched to fulfill * the request. *

* * @param spotPrice * The maximum hourly price (bid) for the Spot instance launched to * fulfill the request. * @return Returns a reference to this object so that method calls can be * chained together. */ public SpotInstanceRequest withSpotPrice(String spotPrice) { setSpotPrice(spotPrice); return this; } /** *

* The Spot instance request type. *

* * @param type * The Spot instance request type. * @see SpotInstanceType */ public void setType(String type) { this.type = type; } /** *

* The Spot instance request type. *

* * @return The Spot instance request type. * @see SpotInstanceType */ public String getType() { return this.type; } /** *

* The Spot instance request type. *

* * @param type * The Spot instance request type. * @return Returns a reference to this object so that method calls can be * chained together. * @see SpotInstanceType */ public SpotInstanceRequest withType(String type) { setType(type); return this; } /** *

* The Spot instance request type. *

* * @param type * The Spot instance request type. * @see SpotInstanceType */ public void setType(SpotInstanceType type) { this.type = type.toString(); } /** *

* The Spot instance request type. *

* * @param type * The Spot instance request type. * @return Returns a reference to this object so that method calls can be * chained together. * @see SpotInstanceType */ public SpotInstanceRequest withType(SpotInstanceType type) { setType(type); return this; } /** *

* The state of the Spot instance request. Spot bid status information can * help you track your Spot instance requests. For more information, see Spot Bid Status in the Amazon Elastic Compute Cloud User * Guide. *

* * @param state * The state of the Spot instance request. Spot bid status * information can help you track your Spot instance requests. For * more information, see Spot Bid Status in the Amazon Elastic Compute Cloud User * Guide. * @see SpotInstanceState */ public void setState(String state) { this.state = state; } /** *

* The state of the Spot instance request. Spot bid status information can * help you track your Spot instance requests. For more information, see Spot Bid Status in the Amazon Elastic Compute Cloud User * Guide. *

* * @return The state of the Spot instance request. Spot bid status * information can help you track your Spot instance requests. For * more information, see Spot Bid Status in the Amazon Elastic Compute Cloud User * Guide. * @see SpotInstanceState */ public String getState() { return this.state; } /** *

* The state of the Spot instance request. Spot bid status information can * help you track your Spot instance requests. For more information, see Spot Bid Status in the Amazon Elastic Compute Cloud User * Guide. *

* * @param state * The state of the Spot instance request. Spot bid status * information can help you track your Spot instance requests. For * more information, see Spot Bid Status in the Amazon Elastic Compute Cloud User * Guide. * @return Returns a reference to this object so that method calls can be * chained together. * @see SpotInstanceState */ public SpotInstanceRequest withState(String state) { setState(state); return this; } /** *

* The state of the Spot instance request. Spot bid status information can * help you track your Spot instance requests. For more information, see Spot Bid Status in the Amazon Elastic Compute Cloud User * Guide. *

* * @param state * The state of the Spot instance request. Spot bid status * information can help you track your Spot instance requests. For * more information, see Spot Bid Status in the Amazon Elastic Compute Cloud User * Guide. * @see SpotInstanceState */ public void setState(SpotInstanceState state) { this.state = state.toString(); } /** *

* The state of the Spot instance request. Spot bid status information can * help you track your Spot instance requests. For more information, see Spot Bid Status in the Amazon Elastic Compute Cloud User * Guide. *

* * @param state * The state of the Spot instance request. Spot bid status * information can help you track your Spot instance requests. For * more information, see Spot Bid Status in the Amazon Elastic Compute Cloud User * Guide. * @return Returns a reference to this object so that method calls can be * chained together. * @see SpotInstanceState */ public SpotInstanceRequest withState(SpotInstanceState state) { setState(state); return this; } /** *

* The fault codes for the Spot instance request, if any. *

* * @param fault * The fault codes for the Spot instance request, if any. */ public void setFault(SpotInstanceStateFault fault) { this.fault = fault; } /** *

* The fault codes for the Spot instance request, if any. *

* * @return The fault codes for the Spot instance request, if any. */ public SpotInstanceStateFault getFault() { return this.fault; } /** *

* The fault codes for the Spot instance request, if any. *

* * @param fault * The fault codes for the Spot instance request, if any. * @return Returns a reference to this object so that method calls can be * chained together. */ public SpotInstanceRequest withFault(SpotInstanceStateFault fault) { setFault(fault); return this; } /** *

* The status code and status message describing the Spot instance request. *

* * @param status * The status code and status message describing the Spot instance * request. */ public void setStatus(SpotInstanceStatus status) { this.status = status; } /** *

* The status code and status message describing the Spot instance request. *

* * @return The status code and status message describing the Spot instance * request. */ public SpotInstanceStatus getStatus() { return this.status; } /** *

* The status code and status message describing the Spot instance request. *

* * @param status * The status code and status message describing the Spot instance * request. * @return Returns a reference to this object so that method calls can be * chained together. */ public SpotInstanceRequest withStatus(SpotInstanceStatus status) { setStatus(status); return this; } /** *

* The start date of the request, in UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). The * request becomes active at this date and time. *

* * @param validFrom * The start date of the request, in UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). * The request becomes active at this date and time. */ public void setValidFrom(java.util.Date validFrom) { this.validFrom = validFrom; } /** *

* The start date of the request, in UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). The * request becomes active at this date and time. *

* * @return The start date of the request, in UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). * The request becomes active at this date and time. */ public java.util.Date getValidFrom() { return this.validFrom; } /** *

* The start date of the request, in UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). The * request becomes active at this date and time. *

* * @param validFrom * The start date of the request, in UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). * The request becomes active at this date and time. * @return Returns a reference to this object so that method calls can be * chained together. */ public SpotInstanceRequest withValidFrom(java.util.Date validFrom) { setValidFrom(validFrom); return this; } /** *

* The end date of the request, in UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). If this * is a one-time request, it remains active until all instances launch, the * request is canceled, or this date is reached. If the request is * persistent, it remains active until it is canceled or this date is * reached. *

* * @param validUntil * The end date of the request, in UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). * If this is a one-time request, it remains active until all * instances launch, the request is canceled, or this date is * reached. If the request is persistent, it remains active until it * is canceled or this date is reached. */ public void setValidUntil(java.util.Date validUntil) { this.validUntil = validUntil; } /** *

* The end date of the request, in UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). If this * is a one-time request, it remains active until all instances launch, the * request is canceled, or this date is reached. If the request is * persistent, it remains active until it is canceled or this date is * reached. *

* * @return The end date of the request, in UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). * If this is a one-time request, it remains active until all * instances launch, the request is canceled, or this date is * reached. If the request is persistent, it remains active until it * is canceled or this date is reached. */ public java.util.Date getValidUntil() { return this.validUntil; } /** *

* The end date of the request, in UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). If this * is a one-time request, it remains active until all instances launch, the * request is canceled, or this date is reached. If the request is * persistent, it remains active until it is canceled or this date is * reached. *

* * @param validUntil * The end date of the request, in UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). * If this is a one-time request, it remains active until all * instances launch, the request is canceled, or this date is * reached. If the request is persistent, it remains active until it * is canceled or this date is reached. * @return Returns a reference to this object so that method calls can be * chained together. */ public SpotInstanceRequest withValidUntil(java.util.Date validUntil) { setValidUntil(validUntil); return this; } /** *

* The instance launch group. Launch groups are Spot instances that launch * together and terminate together. *

* * @param launchGroup * The instance launch group. Launch groups are Spot instances that * launch together and terminate together. */ public void setLaunchGroup(String launchGroup) { this.launchGroup = launchGroup; } /** *

* The instance launch group. Launch groups are Spot instances that launch * together and terminate together. *

* * @return The instance launch group. Launch groups are Spot instances that * launch together and terminate together. */ public String getLaunchGroup() { return this.launchGroup; } /** *

* The instance launch group. Launch groups are Spot instances that launch * together and terminate together. *

* * @param launchGroup * The instance launch group. Launch groups are Spot instances that * launch together and terminate together. * @return Returns a reference to this object so that method calls can be * chained together. */ public SpotInstanceRequest withLaunchGroup(String launchGroup) { setLaunchGroup(launchGroup); return this; } /** *

* The Availability Zone group. If you specify the same Availability Zone * group for all Spot instance requests, all Spot instances are launched in * the same Availability Zone. *

* * @param availabilityZoneGroup * The Availability Zone group. If you specify the same Availability * Zone group for all Spot instance requests, all Spot instances are * launched in the same Availability Zone. */ public void setAvailabilityZoneGroup(String availabilityZoneGroup) { this.availabilityZoneGroup = availabilityZoneGroup; } /** *

* The Availability Zone group. If you specify the same Availability Zone * group for all Spot instance requests, all Spot instances are launched in * the same Availability Zone. *

* * @return The Availability Zone group. If you specify the same Availability * Zone group for all Spot instance requests, all Spot instances are * launched in the same Availability Zone. */ public String getAvailabilityZoneGroup() { return this.availabilityZoneGroup; } /** *

* The Availability Zone group. If you specify the same Availability Zone * group for all Spot instance requests, all Spot instances are launched in * the same Availability Zone. *

* * @param availabilityZoneGroup * The Availability Zone group. If you specify the same Availability * Zone group for all Spot instance requests, all Spot instances are * launched in the same Availability Zone. * @return Returns a reference to this object so that method calls can be * chained together. */ public SpotInstanceRequest withAvailabilityZoneGroup( String availabilityZoneGroup) { setAvailabilityZoneGroup(availabilityZoneGroup); return this; } /** *

* Additional information for launching instances. *

* * @param launchSpecification * Additional information for launching instances. */ public void setLaunchSpecification(LaunchSpecification launchSpecification) { this.launchSpecification = launchSpecification; } /** *

* Additional information for launching instances. *

* * @return Additional information for launching instances. */ public LaunchSpecification getLaunchSpecification() { return this.launchSpecification; } /** *

* Additional information for launching instances. *

* * @param launchSpecification * Additional information for launching instances. * @return Returns a reference to this object so that method calls can be * chained together. */ public SpotInstanceRequest withLaunchSpecification( LaunchSpecification launchSpecification) { setLaunchSpecification(launchSpecification); return this; } /** *

* The instance ID, if an instance has been launched to fulfill the Spot * instance request. *

* * @param instanceId * The instance ID, if an instance has been launched to fulfill the * Spot instance request. */ public void setInstanceId(String instanceId) { this.instanceId = instanceId; } /** *

* The instance ID, if an instance has been launched to fulfill the Spot * instance request. *

* * @return The instance ID, if an instance has been launched to fulfill the * Spot instance request. */ public String getInstanceId() { return this.instanceId; } /** *

* The instance ID, if an instance has been launched to fulfill the Spot * instance request. *

* * @param instanceId * The instance ID, if an instance has been launched to fulfill the * Spot instance request. * @return Returns a reference to this object so that method calls can be * chained together. */ public SpotInstanceRequest withInstanceId(String instanceId) { setInstanceId(instanceId); return this; } /** *

* The date and time when the Spot instance request was created, in UTC * format (for example, * YYYY-MM-DDTHH:MM:SSZ). *

* * @param createTime * The date and time when the Spot instance request was created, in * UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). */ public void setCreateTime(java.util.Date createTime) { this.createTime = createTime; } /** *

* The date and time when the Spot instance request was created, in UTC * format (for example, * YYYY-MM-DDTHH:MM:SSZ). *

* * @return The date and time when the Spot instance request was created, in * UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). */ public java.util.Date getCreateTime() { return this.createTime; } /** *

* The date and time when the Spot instance request was created, in UTC * format (for example, * YYYY-MM-DDTHH:MM:SSZ). *

* * @param createTime * The date and time when the Spot instance request was created, in * UTC format (for example, * YYYY-MM-DDTHH:MM:SSZ). * @return Returns a reference to this object so that method calls can be * chained together. */ public SpotInstanceRequest withCreateTime(java.util.Date createTime) { setCreateTime(createTime); return this; } /** *

* The product description associated with the Spot instance. *

* * @param productDescription * The product description associated with the Spot instance. * @see RIProductDescription */ public void setProductDescription(String productDescription) { this.productDescription = productDescription; } /** *

* The product description associated with the Spot instance. *

* * @return The product description associated with the Spot instance. * @see RIProductDescription */ public String getProductDescription() { return this.productDescription; } /** *

* The product description associated with the Spot instance. *

* * @param productDescription * The product description associated with the Spot instance. * @return Returns a reference to this object so that method calls can be * chained together. * @see RIProductDescription */ public SpotInstanceRequest withProductDescription(String productDescription) { setProductDescription(productDescription); return this; } /** *

* The product description associated with the Spot instance. *

* * @param productDescription * The product description associated with the Spot instance. * @see RIProductDescription */ public void setProductDescription(RIProductDescription productDescription) { this.productDescription = productDescription.toString(); } /** *

* The product description associated with the Spot instance. *

* * @param productDescription * The product description associated with the Spot instance. * @return Returns a reference to this object so that method calls can be * chained together. * @see RIProductDescription */ public SpotInstanceRequest withProductDescription( RIProductDescription productDescription) { setProductDescription(productDescription); return this; } /** *

* The duration for the Spot instance, in minutes. *

* * @param blockDurationMinutes * The duration for the Spot instance, in minutes. */ public void setBlockDurationMinutes(Integer blockDurationMinutes) { this.blockDurationMinutes = blockDurationMinutes; } /** *

* The duration for the Spot instance, in minutes. *

* * @return The duration for the Spot instance, in minutes. */ public Integer getBlockDurationMinutes() { return this.blockDurationMinutes; } /** *

* The duration for the Spot instance, in minutes. *

* * @param blockDurationMinutes * The duration for the Spot instance, in minutes. * @return Returns a reference to this object so that method calls can be * chained together. */ public SpotInstanceRequest withBlockDurationMinutes( Integer blockDurationMinutes) { setBlockDurationMinutes(blockDurationMinutes); return this; } /** *

* If you specified a duration and your Spot instance request was fulfilled, * this is the fixed hourly price in effect for the Spot instance while it * runs. *

* * @param actualBlockHourlyPrice * If you specified a duration and your Spot instance request was * fulfilled, this is the fixed hourly price in effect for the Spot * instance while it runs. */ public void setActualBlockHourlyPrice(String actualBlockHourlyPrice) { this.actualBlockHourlyPrice = actualBlockHourlyPrice; } /** *

* If you specified a duration and your Spot instance request was fulfilled, * this is the fixed hourly price in effect for the Spot instance while it * runs. *

* * @return If you specified a duration and your Spot instance request was * fulfilled, this is the fixed hourly price in effect for the Spot * instance while it runs. */ public String getActualBlockHourlyPrice() { return this.actualBlockHourlyPrice; } /** *

* If you specified a duration and your Spot instance request was fulfilled, * this is the fixed hourly price in effect for the Spot instance while it * runs. *

* * @param actualBlockHourlyPrice * If you specified a duration and your Spot instance request was * fulfilled, this is the fixed hourly price in effect for the Spot * instance while it runs. * @return Returns a reference to this object so that method calls can be * chained together. */ public SpotInstanceRequest withActualBlockHourlyPrice( String actualBlockHourlyPrice) { setActualBlockHourlyPrice(actualBlockHourlyPrice); 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 SpotInstanceRequest 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 SpotInstanceRequest withTags(java.util.Collection tags) { setTags(tags); return this; } /** *

* The Availability Zone in which the bid is launched. *

* * @param launchedAvailabilityZone * The Availability Zone in which the bid is launched. */ public void setLaunchedAvailabilityZone(String launchedAvailabilityZone) { this.launchedAvailabilityZone = launchedAvailabilityZone; } /** *

* The Availability Zone in which the bid is launched. *

* * @return The Availability Zone in which the bid is launched. */ public String getLaunchedAvailabilityZone() { return this.launchedAvailabilityZone; } /** *

* The Availability Zone in which the bid is launched. *

* * @param launchedAvailabilityZone * The Availability Zone in which the bid is launched. * @return Returns a reference to this object so that method calls can be * chained together. */ public SpotInstanceRequest withLaunchedAvailabilityZone( String launchedAvailabilityZone) { setLaunchedAvailabilityZone(launchedAvailabilityZone); 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 (getSpotInstanceRequestId() != null) sb.append("SpotInstanceRequestId: " + getSpotInstanceRequestId() + ","); if (getSpotPrice() != null) sb.append("SpotPrice: " + getSpotPrice() + ","); if (getType() != null) sb.append("Type: " + getType() + ","); if (getState() != null) sb.append("State: " + getState() + ","); if (getFault() != null) sb.append("Fault: " + getFault() + ","); if (getStatus() != null) sb.append("Status: " + getStatus() + ","); if (getValidFrom() != null) sb.append("ValidFrom: " + getValidFrom() + ","); if (getValidUntil() != null) sb.append("ValidUntil: " + getValidUntil() + ","); if (getLaunchGroup() != null) sb.append("LaunchGroup: " + getLaunchGroup() + ","); if (getAvailabilityZoneGroup() != null) sb.append("AvailabilityZoneGroup: " + getAvailabilityZoneGroup() + ","); if (getLaunchSpecification() != null) sb.append("LaunchSpecification: " + getLaunchSpecification() + ","); if (getInstanceId() != null) sb.append("InstanceId: " + getInstanceId() + ","); if (getCreateTime() != null) sb.append("CreateTime: " + getCreateTime() + ","); if (getProductDescription() != null) sb.append("ProductDescription: " + getProductDescription() + ","); if (getBlockDurationMinutes() != null) sb.append("BlockDurationMinutes: " + getBlockDurationMinutes() + ","); if (getActualBlockHourlyPrice() != null) sb.append("ActualBlockHourlyPrice: " + getActualBlockHourlyPrice() + ","); if (getTags() != null) sb.append("Tags: " + getTags() + ","); if (getLaunchedAvailabilityZone() != null) sb.append("LaunchedAvailabilityZone: " + getLaunchedAvailabilityZone()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SpotInstanceRequest == false) return false; SpotInstanceRequest other = (SpotInstanceRequest) obj; if (other.getSpotInstanceRequestId() == null ^ this.getSpotInstanceRequestId() == null) return false; if (other.getSpotInstanceRequestId() != null && other.getSpotInstanceRequestId().equals( this.getSpotInstanceRequestId()) == false) return false; if (other.getSpotPrice() == null ^ this.getSpotPrice() == null) return false; if (other.getSpotPrice() != null && other.getSpotPrice().equals(this.getSpotPrice()) == false) return false; if (other.getType() == null ^ this.getType() == null) return false; if (other.getType() != null && other.getType().equals(this.getType()) == 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.getFault() == null ^ this.getFault() == null) return false; if (other.getFault() != null && other.getFault().equals(this.getFault()) == 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.getValidFrom() == null ^ this.getValidFrom() == null) return false; if (other.getValidFrom() != null && other.getValidFrom().equals(this.getValidFrom()) == false) return false; if (other.getValidUntil() == null ^ this.getValidUntil() == null) return false; if (other.getValidUntil() != null && other.getValidUntil().equals(this.getValidUntil()) == false) return false; if (other.getLaunchGroup() == null ^ this.getLaunchGroup() == null) return false; if (other.getLaunchGroup() != null && other.getLaunchGroup().equals(this.getLaunchGroup()) == false) return false; if (other.getAvailabilityZoneGroup() == null ^ this.getAvailabilityZoneGroup() == null) return false; if (other.getAvailabilityZoneGroup() != null && other.getAvailabilityZoneGroup().equals( this.getAvailabilityZoneGroup()) == false) return false; if (other.getLaunchSpecification() == null ^ this.getLaunchSpecification() == null) return false; if (other.getLaunchSpecification() != null && other.getLaunchSpecification().equals( this.getLaunchSpecification()) == 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.getCreateTime() == null ^ this.getCreateTime() == null) return false; if (other.getCreateTime() != null && other.getCreateTime().equals(this.getCreateTime()) == false) return false; if (other.getProductDescription() == null ^ this.getProductDescription() == null) return false; if (other.getProductDescription() != null && other.getProductDescription().equals( this.getProductDescription()) == false) return false; if (other.getBlockDurationMinutes() == null ^ this.getBlockDurationMinutes() == null) return false; if (other.getBlockDurationMinutes() != null && other.getBlockDurationMinutes().equals( this.getBlockDurationMinutes()) == false) return false; if (other.getActualBlockHourlyPrice() == null ^ this.getActualBlockHourlyPrice() == null) return false; if (other.getActualBlockHourlyPrice() != null && other.getActualBlockHourlyPrice().equals( this.getActualBlockHourlyPrice()) == 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.getLaunchedAvailabilityZone() == null ^ this.getLaunchedAvailabilityZone() == null) return false; if (other.getLaunchedAvailabilityZone() != null && other.getLaunchedAvailabilityZone().equals( this.getLaunchedAvailabilityZone()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getSpotInstanceRequestId() == null) ? 0 : getSpotInstanceRequestId().hashCode()); hashCode = prime * hashCode + ((getSpotPrice() == null) ? 0 : getSpotPrice().hashCode()); hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode()); hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode()); hashCode = prime * hashCode + ((getFault() == null) ? 0 : getFault().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getValidFrom() == null) ? 0 : getValidFrom().hashCode()); hashCode = prime * hashCode + ((getValidUntil() == null) ? 0 : getValidUntil().hashCode()); hashCode = prime * hashCode + ((getLaunchGroup() == null) ? 0 : getLaunchGroup().hashCode()); hashCode = prime * hashCode + ((getAvailabilityZoneGroup() == null) ? 0 : getAvailabilityZoneGroup().hashCode()); hashCode = prime * hashCode + ((getLaunchSpecification() == null) ? 0 : getLaunchSpecification().hashCode()); hashCode = prime * hashCode + ((getInstanceId() == null) ? 0 : getInstanceId().hashCode()); hashCode = prime * hashCode + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); hashCode = prime * hashCode + ((getProductDescription() == null) ? 0 : getProductDescription().hashCode()); hashCode = prime * hashCode + ((getBlockDurationMinutes() == null) ? 0 : getBlockDurationMinutes().hashCode()); hashCode = prime * hashCode + ((getActualBlockHourlyPrice() == null) ? 0 : getActualBlockHourlyPrice().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getLaunchedAvailabilityZone() == null) ? 0 : getLaunchedAvailabilityZone().hashCode()); return hashCode; } @Override public SpotInstanceRequest clone() { try { return (SpotInstanceRequest) 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