com.amazonaws.services.elasticbeanstalk.model.DescribeInstancesHealthRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-elasticbeanstalk Show documentation
/*
* 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.elasticbeanstalk.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* Parameters for a call to DescribeInstancesHealth
.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DescribeInstancesHealthRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* Specify the AWS Elastic Beanstalk environment by name.
*
*/
private String environmentName;
/**
*
* Specify the AWS Elastic Beanstalk environment by ID.
*
*/
private String environmentId;
/**
*
* Specifies the response elements you wish to receive. To retrieve all attributes, set to All
. If no
* attribute names are specified, returns a list of instances.
*
*/
private com.amazonaws.internal.SdkInternalList attributeNames;
/**
*
* Specify the pagination token returned by a previous call.
*
*/
private String nextToken;
/**
*
* Specify the AWS Elastic Beanstalk environment by name.
*
*
* @param environmentName
* Specify the AWS Elastic Beanstalk environment by name.
*/
public void setEnvironmentName(String environmentName) {
this.environmentName = environmentName;
}
/**
*
* Specify the AWS Elastic Beanstalk environment by name.
*
*
* @return Specify the AWS Elastic Beanstalk environment by name.
*/
public String getEnvironmentName() {
return this.environmentName;
}
/**
*
* Specify the AWS Elastic Beanstalk environment by name.
*
*
* @param environmentName
* Specify the AWS Elastic Beanstalk environment by name.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeInstancesHealthRequest withEnvironmentName(String environmentName) {
setEnvironmentName(environmentName);
return this;
}
/**
*
* Specify the AWS Elastic Beanstalk environment by ID.
*
*
* @param environmentId
* Specify the AWS Elastic Beanstalk environment by ID.
*/
public void setEnvironmentId(String environmentId) {
this.environmentId = environmentId;
}
/**
*
* Specify the AWS Elastic Beanstalk environment by ID.
*
*
* @return Specify the AWS Elastic Beanstalk environment by ID.
*/
public String getEnvironmentId() {
return this.environmentId;
}
/**
*
* Specify the AWS Elastic Beanstalk environment by ID.
*
*
* @param environmentId
* Specify the AWS Elastic Beanstalk environment by ID.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeInstancesHealthRequest withEnvironmentId(String environmentId) {
setEnvironmentId(environmentId);
return this;
}
/**
*
* Specifies the response elements you wish to receive. To retrieve all attributes, set to All
. If no
* attribute names are specified, returns a list of instances.
*
*
* @return Specifies the response elements you wish to receive. To retrieve all attributes, set to All
.
* If no attribute names are specified, returns a list of instances.
* @see InstancesHealthAttribute
*/
public java.util.List getAttributeNames() {
if (attributeNames == null) {
attributeNames = new com.amazonaws.internal.SdkInternalList();
}
return attributeNames;
}
/**
*
* Specifies the response elements you wish to receive. To retrieve all attributes, set to All
. If no
* attribute names are specified, returns a list of instances.
*
*
* @param attributeNames
* Specifies the response elements you wish to receive. To retrieve all attributes, set to All
.
* If no attribute names are specified, returns a list of instances.
* @see InstancesHealthAttribute
*/
public void setAttributeNames(java.util.Collection attributeNames) {
if (attributeNames == null) {
this.attributeNames = null;
return;
}
this.attributeNames = new com.amazonaws.internal.SdkInternalList(attributeNames);
}
/**
*
* Specifies the response elements you wish to receive. To retrieve all attributes, set to All
. If no
* attribute names are specified, returns a list of instances.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setAttributeNames(java.util.Collection)} or {@link #withAttributeNames(java.util.Collection)} if you want
* to override the existing values.
*
*
* @param attributeNames
* Specifies the response elements you wish to receive. To retrieve all attributes, set to All
.
* If no attribute names are specified, returns a list of instances.
* @return Returns a reference to this object so that method calls can be chained together.
* @see InstancesHealthAttribute
*/
public DescribeInstancesHealthRequest withAttributeNames(String... attributeNames) {
if (this.attributeNames == null) {
setAttributeNames(new com.amazonaws.internal.SdkInternalList(attributeNames.length));
}
for (String ele : attributeNames) {
this.attributeNames.add(ele);
}
return this;
}
/**
*
* Specifies the response elements you wish to receive. To retrieve all attributes, set to All
. If no
* attribute names are specified, returns a list of instances.
*
*
* @param attributeNames
* Specifies the response elements you wish to receive. To retrieve all attributes, set to All
.
* If no attribute names are specified, returns a list of instances.
* @return Returns a reference to this object so that method calls can be chained together.
* @see InstancesHealthAttribute
*/
public DescribeInstancesHealthRequest withAttributeNames(java.util.Collection attributeNames) {
setAttributeNames(attributeNames);
return this;
}
/**
*
* Specifies the response elements you wish to receive. To retrieve all attributes, set to All
. If no
* attribute names are specified, returns a list of instances.
*
*
* @param attributeNames
* Specifies the response elements you wish to receive. To retrieve all attributes, set to All
.
* If no attribute names are specified, returns a list of instances.
* @return Returns a reference to this object so that method calls can be chained together.
* @see InstancesHealthAttribute
*/
public DescribeInstancesHealthRequest withAttributeNames(InstancesHealthAttribute... attributeNames) {
com.amazonaws.internal.SdkInternalList attributeNamesCopy = new com.amazonaws.internal.SdkInternalList(attributeNames.length);
for (InstancesHealthAttribute value : attributeNames) {
attributeNamesCopy.add(value.toString());
}
if (getAttributeNames() == null) {
setAttributeNames(attributeNamesCopy);
} else {
getAttributeNames().addAll(attributeNamesCopy);
}
return this;
}
/**
*
* Specify the pagination token returned by a previous call.
*
*
* @param nextToken
* Specify the pagination token returned by a previous call.
*/
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
/**
*
* Specify the pagination token returned by a previous call.
*
*
* @return Specify the pagination token returned by a previous call.
*/
public String getNextToken() {
return this.nextToken;
}
/**
*
* Specify the pagination token returned by a previous call.
*
*
* @param nextToken
* Specify the pagination token returned by a previous call.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeInstancesHealthRequest withNextToken(String nextToken) {
setNextToken(nextToken);
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 (getEnvironmentName() != null)
sb.append("EnvironmentName: ").append(getEnvironmentName()).append(",");
if (getEnvironmentId() != null)
sb.append("EnvironmentId: ").append(getEnvironmentId()).append(",");
if (getAttributeNames() != null)
sb.append("AttributeNames: ").append(getAttributeNames()).append(",");
if (getNextToken() != null)
sb.append("NextToken: ").append(getNextToken());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DescribeInstancesHealthRequest == false)
return false;
DescribeInstancesHealthRequest other = (DescribeInstancesHealthRequest) obj;
if (other.getEnvironmentName() == null ^ this.getEnvironmentName() == null)
return false;
if (other.getEnvironmentName() != null && other.getEnvironmentName().equals(this.getEnvironmentName()) == false)
return false;
if (other.getEnvironmentId() == null ^ this.getEnvironmentId() == null)
return false;
if (other.getEnvironmentId() != null && other.getEnvironmentId().equals(this.getEnvironmentId()) == false)
return false;
if (other.getAttributeNames() == null ^ this.getAttributeNames() == null)
return false;
if (other.getAttributeNames() != null && other.getAttributeNames().equals(this.getAttributeNames()) == false)
return false;
if (other.getNextToken() == null ^ this.getNextToken() == null)
return false;
if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getEnvironmentName() == null) ? 0 : getEnvironmentName().hashCode());
hashCode = prime * hashCode + ((getEnvironmentId() == null) ? 0 : getEnvironmentId().hashCode());
hashCode = prime * hashCode + ((getAttributeNames() == null) ? 0 : getAttributeNames().hashCode());
hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode());
return hashCode;
}
@Override
public DescribeInstancesHealthRequest clone() {
return (DescribeInstancesHealthRequest) super.clone();
}
}