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

com.amazonaws.services.codebuild.model.BatchGetFleetsResult Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Code Build module holds the client classes that are used for communicating with AWS Code Build.

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2019-2024 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.codebuild.model;

import java.io.Serializable;
import javax.annotation.Generated;

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

    /**
     * 

* Information about the requested compute fleets. *

*/ private java.util.List fleets; /** *

* The names of compute fleets for which information could not be found. *

*/ private java.util.List fleetsNotFound; /** *

* Information about the requested compute fleets. *

* * @return Information about the requested compute fleets. */ public java.util.List getFleets() { return fleets; } /** *

* Information about the requested compute fleets. *

* * @param fleets * Information about the requested compute fleets. */ public void setFleets(java.util.Collection fleets) { if (fleets == null) { this.fleets = null; return; } this.fleets = new java.util.ArrayList(fleets); } /** *

* Information about the requested compute fleets. *

*

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

* * @param fleets * Information about the requested compute fleets. * @return Returns a reference to this object so that method calls can be chained together. */ public BatchGetFleetsResult withFleets(Fleet... fleets) { if (this.fleets == null) { setFleets(new java.util.ArrayList(fleets.length)); } for (Fleet ele : fleets) { this.fleets.add(ele); } return this; } /** *

* Information about the requested compute fleets. *

* * @param fleets * Information about the requested compute fleets. * @return Returns a reference to this object so that method calls can be chained together. */ public BatchGetFleetsResult withFleets(java.util.Collection fleets) { setFleets(fleets); return this; } /** *

* The names of compute fleets for which information could not be found. *

* * @return The names of compute fleets for which information could not be found. */ public java.util.List getFleetsNotFound() { return fleetsNotFound; } /** *

* The names of compute fleets for which information could not be found. *

* * @param fleetsNotFound * The names of compute fleets for which information could not be found. */ public void setFleetsNotFound(java.util.Collection fleetsNotFound) { if (fleetsNotFound == null) { this.fleetsNotFound = null; return; } this.fleetsNotFound = new java.util.ArrayList(fleetsNotFound); } /** *

* The names of compute fleets for which information could not be found. *

*

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

* * @param fleetsNotFound * The names of compute fleets for which information could not be found. * @return Returns a reference to this object so that method calls can be chained together. */ public BatchGetFleetsResult withFleetsNotFound(String... fleetsNotFound) { if (this.fleetsNotFound == null) { setFleetsNotFound(new java.util.ArrayList(fleetsNotFound.length)); } for (String ele : fleetsNotFound) { this.fleetsNotFound.add(ele); } return this; } /** *

* The names of compute fleets for which information could not be found. *

* * @param fleetsNotFound * The names of compute fleets for which information could not be found. * @return Returns a reference to this object so that method calls can be chained together. */ public BatchGetFleetsResult withFleetsNotFound(java.util.Collection fleetsNotFound) { setFleetsNotFound(fleetsNotFound); 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 (getFleets() != null) sb.append("Fleets: ").append(getFleets()).append(","); if (getFleetsNotFound() != null) sb.append("FleetsNotFound: ").append(getFleetsNotFound()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof BatchGetFleetsResult == false) return false; BatchGetFleetsResult other = (BatchGetFleetsResult) obj; if (other.getFleets() == null ^ this.getFleets() == null) return false; if (other.getFleets() != null && other.getFleets().equals(this.getFleets()) == false) return false; if (other.getFleetsNotFound() == null ^ this.getFleetsNotFound() == null) return false; if (other.getFleetsNotFound() != null && other.getFleetsNotFound().equals(this.getFleetsNotFound()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getFleets() == null) ? 0 : getFleets().hashCode()); hashCode = prime * hashCode + ((getFleetsNotFound() == null) ? 0 : getFleetsNotFound().hashCode()); return hashCode; } @Override public BatchGetFleetsResult clone() { try { return (BatchGetFleetsResult) 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