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 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.772
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 Spot Instance request. *

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

* 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; /** *

* 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; /** *

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

*/ private Integer blockDurationMinutes; /** *

* 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 fault codes for the Spot Instance request, if any. *

*/ private SpotInstanceStateFault fault; /** *

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

*/ private String instanceId; /** *

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

*/ private String launchGroup; /** *

* Additional information for launching instances. *

*/ private LaunchSpecification launchSpecification; /** *

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

*/ private String launchedAvailabilityZone; /** *

* The product description associated with the Spot Instance. *

*/ private String productDescription; /** *

* The ID of the Spot Instance request. *

*/ private String spotInstanceRequestId; /** *

* The maximum price per hour that you are willing to pay for a Spot Instance. *

*/ private String spotPrice; /** *

* The state of the Spot Instance request. Spot status information helps track your Spot Instance requests. For more * information, see Spot * Status in the Amazon EC2 User Guide for Linux Instances. *

*/ private String state; /** *

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

*/ private SpotInstanceStatus status; /** *

* Any tags assigned to the resource. *

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

* The Spot Instance request type. *

*/ private String type; /** *

* 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. The default end date is 7 days from the current * date. *

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

* The behavior when a Spot Instance is interrupted. *

*/ private String instanceInterruptionBehavior; /** *

* 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; } /** *

* 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; } /** *

* 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; } /** *

* 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 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 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 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; } /** *

* 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 Availability Zone in which the request is launched. *

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

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

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

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

* * @param launchedAvailabilityZone * The Availability Zone in which the request 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; } /** *

* 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) { withProductDescription(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(RIProductDescription productDescription) { this.productDescription = productDescription.toString(); return this; } /** *

* 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 price per hour that you are willing to pay for a Spot Instance. *

* * @param spotPrice * The maximum price per hour that you are willing to pay for a Spot Instance. */ public void setSpotPrice(String spotPrice) { this.spotPrice = spotPrice; } /** *

* The maximum price per hour that you are willing to pay for a Spot Instance. *

* * @return The maximum price per hour that you are willing to pay for a Spot Instance. */ public String getSpotPrice() { return this.spotPrice; } /** *

* The maximum price per hour that you are willing to pay for a Spot Instance. *

* * @param spotPrice * The maximum price per hour that you are willing to pay for a Spot Instance. * @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 state of the Spot Instance request. Spot status information helps track your Spot Instance requests. For more * information, see Spot * Status in the Amazon EC2 User Guide for Linux Instances. *

* * @param state * The state of the Spot Instance request. Spot status information helps track your Spot Instance requests. * For more information, see Spot Status in the * Amazon EC2 User Guide for Linux Instances. * @see SpotInstanceState */ public void setState(String state) { this.state = state; } /** *

* The state of the Spot Instance request. Spot status information helps track your Spot Instance requests. For more * information, see Spot * Status in the Amazon EC2 User Guide for Linux Instances. *

* * @return The state of the Spot Instance request. Spot status information helps track your Spot Instance requests. * For more information, see Spot Status in the * Amazon EC2 User Guide for Linux Instances. * @see SpotInstanceState */ public String getState() { return this.state; } /** *

* The state of the Spot Instance request. Spot status information helps track your Spot Instance requests. For more * information, see Spot * Status in the Amazon EC2 User Guide for Linux Instances. *

* * @param state * The state of the Spot Instance request. Spot status information helps track your Spot Instance requests. * For more information, see Spot Status in the * Amazon EC2 User Guide for Linux Instances. * @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 status information helps track your Spot Instance requests. For more * information, see Spot * Status in the Amazon EC2 User Guide for Linux Instances. *

* * @param state * The state of the Spot Instance request. Spot status information helps track your Spot Instance requests. * For more information, see Spot Status in the * Amazon EC2 User Guide for Linux Instances. * @see SpotInstanceState */ public void setState(SpotInstanceState state) { withState(state); } /** *

* The state of the Spot Instance request. Spot status information helps track your Spot Instance requests. For more * information, see Spot * Status in the Amazon EC2 User Guide for Linux Instances. *

* * @param state * The state of the Spot Instance request. Spot status information helps track your Spot Instance requests. * For more information, see Spot Status in the * Amazon EC2 User Guide for Linux Instances. * @return Returns a reference to this object so that method calls can be chained together. * @see SpotInstanceState */ public SpotInstanceRequest withState(SpotInstanceState state) { this.state = state.toString(); 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; } /** *

* 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 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) { withType(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(SpotInstanceType type) { this.type = type.toString(); 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. The default end date is 7 days from the current * date. *

* * @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. The default end date is 7 days * from the current date. */ 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. The default end date is 7 days from the current * date. *

* * @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. The default end * date is 7 days from the current date. */ 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. The default end date is 7 days from the current * date. *

* * @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. The default end date is 7 days * from the current date. * @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 behavior when a Spot Instance is interrupted. *

* * @param instanceInterruptionBehavior * The behavior when a Spot Instance is interrupted. * @see InstanceInterruptionBehavior */ public void setInstanceInterruptionBehavior(String instanceInterruptionBehavior) { this.instanceInterruptionBehavior = instanceInterruptionBehavior; } /** *

* The behavior when a Spot Instance is interrupted. *

* * @return The behavior when a Spot Instance is interrupted. * @see InstanceInterruptionBehavior */ public String getInstanceInterruptionBehavior() { return this.instanceInterruptionBehavior; } /** *

* The behavior when a Spot Instance is interrupted. *

* * @param instanceInterruptionBehavior * The behavior when a Spot Instance is interrupted. * @return Returns a reference to this object so that method calls can be chained together. * @see InstanceInterruptionBehavior */ public SpotInstanceRequest withInstanceInterruptionBehavior(String instanceInterruptionBehavior) { setInstanceInterruptionBehavior(instanceInterruptionBehavior); return this; } /** *

* The behavior when a Spot Instance is interrupted. *

* * @param instanceInterruptionBehavior * The behavior when a Spot Instance is interrupted. * @see InstanceInterruptionBehavior */ public void setInstanceInterruptionBehavior(InstanceInterruptionBehavior instanceInterruptionBehavior) { withInstanceInterruptionBehavior(instanceInterruptionBehavior); } /** *

* The behavior when a Spot Instance is interrupted. *

* * @param instanceInterruptionBehavior * The behavior when a Spot Instance is interrupted. * @return Returns a reference to this object so that method calls can be chained together. * @see InstanceInterruptionBehavior */ public SpotInstanceRequest withInstanceInterruptionBehavior(InstanceInterruptionBehavior instanceInterruptionBehavior) { this.instanceInterruptionBehavior = instanceInterruptionBehavior.toString(); 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 (getActualBlockHourlyPrice() != null) sb.append("ActualBlockHourlyPrice: ").append(getActualBlockHourlyPrice()).append(","); if (getAvailabilityZoneGroup() != null) sb.append("AvailabilityZoneGroup: ").append(getAvailabilityZoneGroup()).append(","); if (getBlockDurationMinutes() != null) sb.append("BlockDurationMinutes: ").append(getBlockDurationMinutes()).append(","); if (getCreateTime() != null) sb.append("CreateTime: ").append(getCreateTime()).append(","); if (getFault() != null) sb.append("Fault: ").append(getFault()).append(","); if (getInstanceId() != null) sb.append("InstanceId: ").append(getInstanceId()).append(","); if (getLaunchGroup() != null) sb.append("LaunchGroup: ").append(getLaunchGroup()).append(","); if (getLaunchSpecification() != null) sb.append("LaunchSpecification: ").append(getLaunchSpecification()).append(","); if (getLaunchedAvailabilityZone() != null) sb.append("LaunchedAvailabilityZone: ").append(getLaunchedAvailabilityZone()).append(","); if (getProductDescription() != null) sb.append("ProductDescription: ").append(getProductDescription()).append(","); if (getSpotInstanceRequestId() != null) sb.append("SpotInstanceRequestId: ").append(getSpotInstanceRequestId()).append(","); if (getSpotPrice() != null) sb.append("SpotPrice: ").append(getSpotPrice()).append(","); if (getState() != null) sb.append("State: ").append(getState()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getType() != null) sb.append("Type: ").append(getType()).append(","); if (getValidFrom() != null) sb.append("ValidFrom: ").append(getValidFrom()).append(","); if (getValidUntil() != null) sb.append("ValidUntil: ").append(getValidUntil()).append(","); if (getInstanceInterruptionBehavior() != null) sb.append("InstanceInterruptionBehavior: ").append(getInstanceInterruptionBehavior()); 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.getActualBlockHourlyPrice() == null ^ this.getActualBlockHourlyPrice() == null) return false; if (other.getActualBlockHourlyPrice() != null && other.getActualBlockHourlyPrice().equals(this.getActualBlockHourlyPrice()) == 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.getBlockDurationMinutes() == null ^ this.getBlockDurationMinutes() == null) return false; if (other.getBlockDurationMinutes() != null && other.getBlockDurationMinutes().equals(this.getBlockDurationMinutes()) == 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.getFault() == null ^ this.getFault() == null) return false; if (other.getFault() != null && other.getFault().equals(this.getFault()) == 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.getLaunchGroup() == null ^ this.getLaunchGroup() == null) return false; if (other.getLaunchGroup() != null && other.getLaunchGroup().equals(this.getLaunchGroup()) == 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.getLaunchedAvailabilityZone() == null ^ this.getLaunchedAvailabilityZone() == null) return false; if (other.getLaunchedAvailabilityZone() != null && other.getLaunchedAvailabilityZone().equals(this.getLaunchedAvailabilityZone()) == 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.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.getState() == null ^ this.getState() == null) return false; if (other.getState() != null && other.getState().equals(this.getState()) == 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.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == 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.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.getInstanceInterruptionBehavior() == null ^ this.getInstanceInterruptionBehavior() == null) return false; if (other.getInstanceInterruptionBehavior() != null && other.getInstanceInterruptionBehavior().equals(this.getInstanceInterruptionBehavior()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getActualBlockHourlyPrice() == null) ? 0 : getActualBlockHourlyPrice().hashCode()); hashCode = prime * hashCode + ((getAvailabilityZoneGroup() == null) ? 0 : getAvailabilityZoneGroup().hashCode()); hashCode = prime * hashCode + ((getBlockDurationMinutes() == null) ? 0 : getBlockDurationMinutes().hashCode()); hashCode = prime * hashCode + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); hashCode = prime * hashCode + ((getFault() == null) ? 0 : getFault().hashCode()); hashCode = prime * hashCode + ((getInstanceId() == null) ? 0 : getInstanceId().hashCode()); hashCode = prime * hashCode + ((getLaunchGroup() == null) ? 0 : getLaunchGroup().hashCode()); hashCode = prime * hashCode + ((getLaunchSpecification() == null) ? 0 : getLaunchSpecification().hashCode()); hashCode = prime * hashCode + ((getLaunchedAvailabilityZone() == null) ? 0 : getLaunchedAvailabilityZone().hashCode()); hashCode = prime * hashCode + ((getProductDescription() == null) ? 0 : getProductDescription().hashCode()); hashCode = prime * hashCode + ((getSpotInstanceRequestId() == null) ? 0 : getSpotInstanceRequestId().hashCode()); hashCode = prime * hashCode + ((getSpotPrice() == null) ? 0 : getSpotPrice().hashCode()); hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode()); hashCode = prime * hashCode + ((getValidFrom() == null) ? 0 : getValidFrom().hashCode()); hashCode = prime * hashCode + ((getValidUntil() == null) ? 0 : getValidUntil().hashCode()); hashCode = prime * hashCode + ((getInstanceInterruptionBehavior() == null) ? 0 : getInstanceInterruptionBehavior().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 - 2024 Weber Informatics LLC | Privacy Policy