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

com.amazonaws.services.ec2.model.CancelSpotFleetRequestsResult 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;

/**
 * 

* Contains the output of CancelSpotFleetRequests. *

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

* Information about the Spot fleet requests that are not successfully * canceled. *

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

* Information about the Spot fleet requests that are successfully canceled. *

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

* Information about the Spot fleet requests that are not successfully * canceled. *

* * @return Information about the Spot fleet requests that are not * successfully canceled. */ public java.util.List getUnsuccessfulFleetRequests() { if (unsuccessfulFleetRequests == null) { unsuccessfulFleetRequests = new com.amazonaws.internal.SdkInternalList(); } return unsuccessfulFleetRequests; } /** *

* Information about the Spot fleet requests that are not successfully * canceled. *

* * @param unsuccessfulFleetRequests * Information about the Spot fleet requests that are not * successfully canceled. */ public void setUnsuccessfulFleetRequests( java.util.Collection unsuccessfulFleetRequests) { if (unsuccessfulFleetRequests == null) { this.unsuccessfulFleetRequests = null; return; } this.unsuccessfulFleetRequests = new com.amazonaws.internal.SdkInternalList( unsuccessfulFleetRequests); } /** *

* Information about the Spot fleet requests that are not successfully * canceled. *

*

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

* * @param unsuccessfulFleetRequests * Information about the Spot fleet requests that are not * successfully canceled. * @return Returns a reference to this object so that method calls can be * chained together. */ public CancelSpotFleetRequestsResult withUnsuccessfulFleetRequests( CancelSpotFleetRequestsErrorItem... unsuccessfulFleetRequests) { if (this.unsuccessfulFleetRequests == null) { setUnsuccessfulFleetRequests(new com.amazonaws.internal.SdkInternalList( unsuccessfulFleetRequests.length)); } for (CancelSpotFleetRequestsErrorItem ele : unsuccessfulFleetRequests) { this.unsuccessfulFleetRequests.add(ele); } return this; } /** *

* Information about the Spot fleet requests that are not successfully * canceled. *

* * @param unsuccessfulFleetRequests * Information about the Spot fleet requests that are not * successfully canceled. * @return Returns a reference to this object so that method calls can be * chained together. */ public CancelSpotFleetRequestsResult withUnsuccessfulFleetRequests( java.util.Collection unsuccessfulFleetRequests) { setUnsuccessfulFleetRequests(unsuccessfulFleetRequests); return this; } /** *

* Information about the Spot fleet requests that are successfully canceled. *

* * @return Information about the Spot fleet requests that are successfully * canceled. */ public java.util.List getSuccessfulFleetRequests() { if (successfulFleetRequests == null) { successfulFleetRequests = new com.amazonaws.internal.SdkInternalList(); } return successfulFleetRequests; } /** *

* Information about the Spot fleet requests that are successfully canceled. *

* * @param successfulFleetRequests * Information about the Spot fleet requests that are successfully * canceled. */ public void setSuccessfulFleetRequests( java.util.Collection successfulFleetRequests) { if (successfulFleetRequests == null) { this.successfulFleetRequests = null; return; } this.successfulFleetRequests = new com.amazonaws.internal.SdkInternalList( successfulFleetRequests); } /** *

* Information about the Spot fleet requests that are successfully canceled. *

*

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

* * @param successfulFleetRequests * Information about the Spot fleet requests that are successfully * canceled. * @return Returns a reference to this object so that method calls can be * chained together. */ public CancelSpotFleetRequestsResult withSuccessfulFleetRequests( CancelSpotFleetRequestsSuccessItem... successfulFleetRequests) { if (this.successfulFleetRequests == null) { setSuccessfulFleetRequests(new com.amazonaws.internal.SdkInternalList( successfulFleetRequests.length)); } for (CancelSpotFleetRequestsSuccessItem ele : successfulFleetRequests) { this.successfulFleetRequests.add(ele); } return this; } /** *

* Information about the Spot fleet requests that are successfully canceled. *

* * @param successfulFleetRequests * Information about the Spot fleet requests that are successfully * canceled. * @return Returns a reference to this object so that method calls can be * chained together. */ public CancelSpotFleetRequestsResult withSuccessfulFleetRequests( java.util.Collection successfulFleetRequests) { setSuccessfulFleetRequests(successfulFleetRequests); 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 (getUnsuccessfulFleetRequests() != null) sb.append("UnsuccessfulFleetRequests: " + getUnsuccessfulFleetRequests() + ","); if (getSuccessfulFleetRequests() != null) sb.append("SuccessfulFleetRequests: " + getSuccessfulFleetRequests()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CancelSpotFleetRequestsResult == false) return false; CancelSpotFleetRequestsResult other = (CancelSpotFleetRequestsResult) obj; if (other.getUnsuccessfulFleetRequests() == null ^ this.getUnsuccessfulFleetRequests() == null) return false; if (other.getUnsuccessfulFleetRequests() != null && other.getUnsuccessfulFleetRequests().equals( this.getUnsuccessfulFleetRequests()) == false) return false; if (other.getSuccessfulFleetRequests() == null ^ this.getSuccessfulFleetRequests() == null) return false; if (other.getSuccessfulFleetRequests() != null && other.getSuccessfulFleetRequests().equals( this.getSuccessfulFleetRequests()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getUnsuccessfulFleetRequests() == null) ? 0 : getUnsuccessfulFleetRequests().hashCode()); hashCode = prime * hashCode + ((getSuccessfulFleetRequests() == null) ? 0 : getSuccessfulFleetRequests().hashCode()); return hashCode; } @Override public CancelSpotFleetRequestsResult clone() { try { return (CancelSpotFleetRequestsResult) 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