com.amazonaws.services.ec2.model.SpotFleetRequestConfig Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* Copyright 2018-2023 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 Fleet request.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class SpotFleetRequestConfig implements Serializable, Cloneable {
/**
*
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to or
* greater than its target capacity, the status is fulfilled
. If the size of the fleet is decreased,
* the status is pending_termination
while Spot Instances are terminating.
*
*/
private String activityStatus;
/**
*
* The creation date and time of the request.
*
*/
private java.util.Date createTime;
/**
*
* The configuration of the Spot Fleet request.
*
*/
private SpotFleetRequestConfigData spotFleetRequestConfig;
/**
*
* The ID of the Spot Fleet request.
*
*/
private String spotFleetRequestId;
/**
*
* The state of the Spot Fleet request.
*
*/
private String spotFleetRequestState;
/**
*
* The tags for a Spot Fleet resource.
*
*/
private com.amazonaws.internal.SdkInternalList tags;
/**
*
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to or
* greater than its target capacity, the status is fulfilled
. If the size of the fleet is decreased,
* the status is pending_termination
while Spot Instances are terminating.
*
*
* @param activityStatus
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to
* or greater than its target capacity, the status is fulfilled
. If the size of the fleet is
* decreased, the status is pending_termination
while Spot Instances are terminating.
* @see ActivityStatus
*/
public void setActivityStatus(String activityStatus) {
this.activityStatus = activityStatus;
}
/**
*
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to or
* greater than its target capacity, the status is fulfilled
. If the size of the fleet is decreased,
* the status is pending_termination
while Spot Instances are terminating.
*
*
* @return The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to
* or greater than its target capacity, the status is fulfilled
. If the size of the fleet is
* decreased, the status is pending_termination
while Spot Instances are terminating.
* @see ActivityStatus
*/
public String getActivityStatus() {
return this.activityStatus;
}
/**
*
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to or
* greater than its target capacity, the status is fulfilled
. If the size of the fleet is decreased,
* the status is pending_termination
while Spot Instances are terminating.
*
*
* @param activityStatus
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to
* or greater than its target capacity, the status is fulfilled
. If the size of the fleet is
* decreased, the status is pending_termination
while Spot Instances are terminating.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ActivityStatus
*/
public SpotFleetRequestConfig withActivityStatus(String activityStatus) {
setActivityStatus(activityStatus);
return this;
}
/**
*
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to or
* greater than its target capacity, the status is fulfilled
. If the size of the fleet is decreased,
* the status is pending_termination
while Spot Instances are terminating.
*
*
* @param activityStatus
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to
* or greater than its target capacity, the status is fulfilled
. If the size of the fleet is
* decreased, the status is pending_termination
while Spot Instances are terminating.
* @see ActivityStatus
*/
public void setActivityStatus(ActivityStatus activityStatus) {
withActivityStatus(activityStatus);
}
/**
*
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to or
* greater than its target capacity, the status is fulfilled
. If the size of the fleet is decreased,
* the status is pending_termination
while Spot Instances are terminating.
*
*
* @param activityStatus
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to
* or greater than its target capacity, the status is fulfilled
. If the size of the fleet is
* decreased, the status is pending_termination
while Spot Instances are terminating.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ActivityStatus
*/
public SpotFleetRequestConfig withActivityStatus(ActivityStatus activityStatus) {
this.activityStatus = activityStatus.toString();
return this;
}
/**
*
* The creation date and time of the request.
*
*
* @param createTime
* The creation date and time of the request.
*/
public void setCreateTime(java.util.Date createTime) {
this.createTime = createTime;
}
/**
*
* The creation date and time of the request.
*
*
* @return The creation date and time of the request.
*/
public java.util.Date getCreateTime() {
return this.createTime;
}
/**
*
* The creation date and time of the request.
*
*
* @param createTime
* The creation date and time of the request.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public SpotFleetRequestConfig withCreateTime(java.util.Date createTime) {
setCreateTime(createTime);
return this;
}
/**
*
* The configuration of the Spot Fleet request.
*
*
* @param spotFleetRequestConfig
* The configuration of the Spot Fleet request.
*/
public void setSpotFleetRequestConfig(SpotFleetRequestConfigData spotFleetRequestConfig) {
this.spotFleetRequestConfig = spotFleetRequestConfig;
}
/**
*
* The configuration of the Spot Fleet request.
*
*
* @return The configuration of the Spot Fleet request.
*/
public SpotFleetRequestConfigData getSpotFleetRequestConfig() {
return this.spotFleetRequestConfig;
}
/**
*
* The configuration of the Spot Fleet request.
*
*
* @param spotFleetRequestConfig
* The configuration of the Spot Fleet request.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public SpotFleetRequestConfig withSpotFleetRequestConfig(SpotFleetRequestConfigData spotFleetRequestConfig) {
setSpotFleetRequestConfig(spotFleetRequestConfig);
return this;
}
/**
*
* The ID of the Spot Fleet request.
*
*
* @param spotFleetRequestId
* The ID of the Spot Fleet request.
*/
public void setSpotFleetRequestId(String spotFleetRequestId) {
this.spotFleetRequestId = spotFleetRequestId;
}
/**
*
* The ID of the Spot Fleet request.
*
*
* @return The ID of the Spot Fleet request.
*/
public String getSpotFleetRequestId() {
return this.spotFleetRequestId;
}
/**
*
* The ID of the Spot Fleet request.
*
*
* @param spotFleetRequestId
* The ID of the Spot Fleet request.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public SpotFleetRequestConfig withSpotFleetRequestId(String spotFleetRequestId) {
setSpotFleetRequestId(spotFleetRequestId);
return this;
}
/**
*
* The state of the Spot Fleet request.
*
*
* @param spotFleetRequestState
* The state of the Spot Fleet request.
* @see BatchState
*/
public void setSpotFleetRequestState(String spotFleetRequestState) {
this.spotFleetRequestState = spotFleetRequestState;
}
/**
*
* The state of the Spot Fleet request.
*
*
* @return The state of the Spot Fleet request.
* @see BatchState
*/
public String getSpotFleetRequestState() {
return this.spotFleetRequestState;
}
/**
*
* The state of the Spot Fleet request.
*
*
* @param spotFleetRequestState
* The state of the Spot Fleet request.
* @return Returns a reference to this object so that method calls can be chained together.
* @see BatchState
*/
public SpotFleetRequestConfig withSpotFleetRequestState(String spotFleetRequestState) {
setSpotFleetRequestState(spotFleetRequestState);
return this;
}
/**
*
* The state of the Spot Fleet request.
*
*
* @param spotFleetRequestState
* The state of the Spot Fleet request.
* @see BatchState
*/
public void setSpotFleetRequestState(BatchState spotFleetRequestState) {
withSpotFleetRequestState(spotFleetRequestState);
}
/**
*
* The state of the Spot Fleet request.
*
*
* @param spotFleetRequestState
* The state of the Spot Fleet request.
* @return Returns a reference to this object so that method calls can be chained together.
* @see BatchState
*/
public SpotFleetRequestConfig withSpotFleetRequestState(BatchState spotFleetRequestState) {
this.spotFleetRequestState = spotFleetRequestState.toString();
return this;
}
/**
*
* The tags for a Spot Fleet resource.
*
*
* @return The tags for a Spot Fleet resource.
*/
public java.util.List getTags() {
if (tags == null) {
tags = new com.amazonaws.internal.SdkInternalList();
}
return tags;
}
/**
*
* The tags for a Spot Fleet resource.
*
*
* @param tags
* The tags for a Spot Fleet resource.
*/
public void setTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
return;
}
this.tags = new com.amazonaws.internal.SdkInternalList(tags);
}
/**
*
* The tags for a Spot Fleet 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
* The tags for a Spot Fleet resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public SpotFleetRequestConfig 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;
}
/**
*
* The tags for a Spot Fleet resource.
*
*
* @param tags
* The tags for a Spot Fleet resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public SpotFleetRequestConfig withTags(java.util.Collection tags) {
setTags(tags);
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 (getActivityStatus() != null)
sb.append("ActivityStatus: ").append(getActivityStatus()).append(",");
if (getCreateTime() != null)
sb.append("CreateTime: ").append(getCreateTime()).append(",");
if (getSpotFleetRequestConfig() != null)
sb.append("SpotFleetRequestConfig: ").append(getSpotFleetRequestConfig()).append(",");
if (getSpotFleetRequestId() != null)
sb.append("SpotFleetRequestId: ").append(getSpotFleetRequestId()).append(",");
if (getSpotFleetRequestState() != null)
sb.append("SpotFleetRequestState: ").append(getSpotFleetRequestState()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof SpotFleetRequestConfig == false)
return false;
SpotFleetRequestConfig other = (SpotFleetRequestConfig) obj;
if (other.getActivityStatus() == null ^ this.getActivityStatus() == null)
return false;
if (other.getActivityStatus() != null && other.getActivityStatus().equals(this.getActivityStatus()) == 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.getSpotFleetRequestConfig() == null ^ this.getSpotFleetRequestConfig() == null)
return false;
if (other.getSpotFleetRequestConfig() != null && other.getSpotFleetRequestConfig().equals(this.getSpotFleetRequestConfig()) == false)
return false;
if (other.getSpotFleetRequestId() == null ^ this.getSpotFleetRequestId() == null)
return false;
if (other.getSpotFleetRequestId() != null && other.getSpotFleetRequestId().equals(this.getSpotFleetRequestId()) == false)
return false;
if (other.getSpotFleetRequestState() == null ^ this.getSpotFleetRequestState() == null)
return false;
if (other.getSpotFleetRequestState() != null && other.getSpotFleetRequestState().equals(this.getSpotFleetRequestState()) == false)
return false;
if (other.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getActivityStatus() == null) ? 0 : getActivityStatus().hashCode());
hashCode = prime * hashCode + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode());
hashCode = prime * hashCode + ((getSpotFleetRequestConfig() == null) ? 0 : getSpotFleetRequestConfig().hashCode());
hashCode = prime * hashCode + ((getSpotFleetRequestId() == null) ? 0 : getSpotFleetRequestId().hashCode());
hashCode = prime * hashCode + ((getSpotFleetRequestState() == null) ? 0 : getSpotFleetRequestState().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
return hashCode;
}
@Override
public SpotFleetRequestConfig clone() {
try {
return (SpotFleetRequestConfig) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}