
com.amazonaws.services.route53.model.ListHealthChecksResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-route53 Show documentation
/*
* Copyright 2011-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.route53.model;
import java.io.Serializable;
/**
*
* A complex type that contains the response to a ListHealthChecks
* request.
*
*/
public class ListHealthChecksResult extends
com.amazonaws.AmazonWebServiceResult
implements Serializable, Cloneable {
/**
*
* A complex type that contains one HealthCheck
element for
* each health check that is associated with the current AWS account.
*
*/
private com.amazonaws.internal.SdkInternalList healthChecks;
/**
*
* For the second and subsequent calls to ListHealthChecks
,
* Marker
is the value that you specified for the marker
* parameter in the previous request.
*
*/
private String marker;
/**
*
* A flag that indicates whether there are more health checks to be listed.
* If the response was truncated, you can get the next group of
* maxitems
health checks by calling
* ListHealthChecks
again and specifying the value of the
* NextMarker
element in the marker parameter.
*
*
* Valid Values: true
| false
*
*/
private Boolean isTruncated;
/**
*
* If IsTruncated
is true
, the value of
* NextMarker
identifies the first health check in the next
* group of maxitems
health checks. Call
* ListHealthChecks
again and specify the value of
* NextMarker
in the marker parameter.
*
*/
private String nextMarker;
/**
*
* The value that you specified for the maxitems
parameter in
* the call to ListHealthChecks
that produced the current
* response.
*
*/
private String maxItems;
/**
*
* A complex type that contains one HealthCheck
element for
* each health check that is associated with the current AWS account.
*
*
* @return A complex type that contains one HealthCheck
element
* for each health check that is associated with the current AWS
* account.
*/
public java.util.List getHealthChecks() {
if (healthChecks == null) {
healthChecks = new com.amazonaws.internal.SdkInternalList();
}
return healthChecks;
}
/**
*
* A complex type that contains one HealthCheck
element for
* each health check that is associated with the current AWS account.
*
*
* @param healthChecks
* A complex type that contains one HealthCheck
element
* for each health check that is associated with the current AWS
* account.
*/
public void setHealthChecks(java.util.Collection healthChecks) {
if (healthChecks == null) {
this.healthChecks = null;
return;
}
this.healthChecks = new com.amazonaws.internal.SdkInternalList(
healthChecks);
}
/**
*
* A complex type that contains one HealthCheck
element for
* each health check that is associated with the current AWS account.
*
*
* NOTE: This method appends the values to the existing list (if
* any). Use {@link #setHealthChecks(java.util.Collection)} or
* {@link #withHealthChecks(java.util.Collection)} if you want to override
* the existing values.
*
*
* @param healthChecks
* A complex type that contains one HealthCheck
element
* for each health check that is associated with the current AWS
* account.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public ListHealthChecksResult withHealthChecks(HealthCheck... healthChecks) {
if (this.healthChecks == null) {
setHealthChecks(new com.amazonaws.internal.SdkInternalList(
healthChecks.length));
}
for (HealthCheck ele : healthChecks) {
this.healthChecks.add(ele);
}
return this;
}
/**
*
* A complex type that contains one HealthCheck
element for
* each health check that is associated with the current AWS account.
*
*
* @param healthChecks
* A complex type that contains one HealthCheck
element
* for each health check that is associated with the current AWS
* account.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public ListHealthChecksResult withHealthChecks(
java.util.Collection healthChecks) {
setHealthChecks(healthChecks);
return this;
}
/**
*
* For the second and subsequent calls to ListHealthChecks
,
* Marker
is the value that you specified for the marker
* parameter in the previous request.
*
*
* @param marker
* For the second and subsequent calls to
* ListHealthChecks
, Marker
is the value
* that you specified for the marker parameter in the previous
* request.
*/
public void setMarker(String marker) {
this.marker = marker;
}
/**
*
* For the second and subsequent calls to ListHealthChecks
,
* Marker
is the value that you specified for the marker
* parameter in the previous request.
*
*
* @return For the second and subsequent calls to
* ListHealthChecks
, Marker
is the value
* that you specified for the marker parameter in the previous
* request.
*/
public String getMarker() {
return this.marker;
}
/**
*
* For the second and subsequent calls to ListHealthChecks
,
* Marker
is the value that you specified for the marker
* parameter in the previous request.
*
*
* @param marker
* For the second and subsequent calls to
* ListHealthChecks
, Marker
is the value
* that you specified for the marker parameter in the previous
* request.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public ListHealthChecksResult withMarker(String marker) {
setMarker(marker);
return this;
}
/**
*
* A flag that indicates whether there are more health checks to be listed.
* If the response was truncated, you can get the next group of
* maxitems
health checks by calling
* ListHealthChecks
again and specifying the value of the
* NextMarker
element in the marker parameter.
*
*
* Valid Values: true
| false
*
*
* @param isTruncated
* A flag that indicates whether there are more health checks to be
* listed. If the response was truncated, you can get the next group
* of maxitems
health checks by calling
* ListHealthChecks
again and specifying the value of
* the NextMarker
element in the marker parameter.
*
* Valid Values: true
| false
*/
public void setIsTruncated(Boolean isTruncated) {
this.isTruncated = isTruncated;
}
/**
*
* A flag that indicates whether there are more health checks to be listed.
* If the response was truncated, you can get the next group of
* maxitems
health checks by calling
* ListHealthChecks
again and specifying the value of the
* NextMarker
element in the marker parameter.
*
*
* Valid Values: true
| false
*
*
* @return A flag that indicates whether there are more health checks to be
* listed. If the response was truncated, you can get the next group
* of maxitems
health checks by calling
* ListHealthChecks
again and specifying the value of
* the NextMarker
element in the marker parameter.
*
* Valid Values: true
| false
*/
public Boolean getIsTruncated() {
return this.isTruncated;
}
/**
*
* A flag that indicates whether there are more health checks to be listed.
* If the response was truncated, you can get the next group of
* maxitems
health checks by calling
* ListHealthChecks
again and specifying the value of the
* NextMarker
element in the marker parameter.
*
*
* Valid Values: true
| false
*
*
* @param isTruncated
* A flag that indicates whether there are more health checks to be
* listed. If the response was truncated, you can get the next group
* of maxitems
health checks by calling
* ListHealthChecks
again and specifying the value of
* the NextMarker
element in the marker parameter.
*
* Valid Values: true
| false
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public ListHealthChecksResult withIsTruncated(Boolean isTruncated) {
setIsTruncated(isTruncated);
return this;
}
/**
*
* A flag that indicates whether there are more health checks to be listed.
* If the response was truncated, you can get the next group of
* maxitems
health checks by calling
* ListHealthChecks
again and specifying the value of the
* NextMarker
element in the marker parameter.
*
*
* Valid Values: true
| false
*
*
* @return A flag that indicates whether there are more health checks to be
* listed. If the response was truncated, you can get the next group
* of maxitems
health checks by calling
* ListHealthChecks
again and specifying the value of
* the NextMarker
element in the marker parameter.
*
* Valid Values: true
| false
*/
public Boolean isTruncated() {
return this.isTruncated;
}
/**
*
* If IsTruncated
is true
, the value of
* NextMarker
identifies the first health check in the next
* group of maxitems
health checks. Call
* ListHealthChecks
again and specify the value of
* NextMarker
in the marker parameter.
*
*
* @param nextMarker
* If IsTruncated
is true
, the value of
* NextMarker
identifies the first health check in the
* next group of maxitems
health checks. Call
* ListHealthChecks
again and specify the value of
* NextMarker
in the marker parameter.
*/
public void setNextMarker(String nextMarker) {
this.nextMarker = nextMarker;
}
/**
*
* If IsTruncated
is true
, the value of
* NextMarker
identifies the first health check in the next
* group of maxitems
health checks. Call
* ListHealthChecks
again and specify the value of
* NextMarker
in the marker parameter.
*
*
* @return If IsTruncated
is true
, the value of
* NextMarker
identifies the first health check in the
* next group of maxitems
health checks. Call
* ListHealthChecks
again and specify the value of
* NextMarker
in the marker parameter.
*/
public String getNextMarker() {
return this.nextMarker;
}
/**
*
* If IsTruncated
is true
, the value of
* NextMarker
identifies the first health check in the next
* group of maxitems
health checks. Call
* ListHealthChecks
again and specify the value of
* NextMarker
in the marker parameter.
*
*
* @param nextMarker
* If IsTruncated
is true
, the value of
* NextMarker
identifies the first health check in the
* next group of maxitems
health checks. Call
* ListHealthChecks
again and specify the value of
* NextMarker
in the marker parameter.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public ListHealthChecksResult withNextMarker(String nextMarker) {
setNextMarker(nextMarker);
return this;
}
/**
*
* The value that you specified for the maxitems
parameter in
* the call to ListHealthChecks
that produced the current
* response.
*
*
* @param maxItems
* The value that you specified for the maxitems
* parameter in the call to ListHealthChecks
that
* produced the current response.
*/
public void setMaxItems(String maxItems) {
this.maxItems = maxItems;
}
/**
*
* The value that you specified for the maxitems
parameter in
* the call to ListHealthChecks
that produced the current
* response.
*
*
* @return The value that you specified for the maxitems
* parameter in the call to ListHealthChecks
that
* produced the current response.
*/
public String getMaxItems() {
return this.maxItems;
}
/**
*
* The value that you specified for the maxitems
parameter in
* the call to ListHealthChecks
that produced the current
* response.
*
*
* @param maxItems
* The value that you specified for the maxitems
* parameter in the call to ListHealthChecks
that
* produced the current response.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public ListHealthChecksResult withMaxItems(String maxItems) {
setMaxItems(maxItems);
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 (getHealthChecks() != null)
sb.append("HealthChecks: " + getHealthChecks() + ",");
if (getMarker() != null)
sb.append("Marker: " + getMarker() + ",");
if (getIsTruncated() != null)
sb.append("IsTruncated: " + getIsTruncated() + ",");
if (getNextMarker() != null)
sb.append("NextMarker: " + getNextMarker() + ",");
if (getMaxItems() != null)
sb.append("MaxItems: " + getMaxItems());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListHealthChecksResult == false)
return false;
ListHealthChecksResult other = (ListHealthChecksResult) obj;
if (other.getHealthChecks() == null ^ this.getHealthChecks() == null)
return false;
if (other.getHealthChecks() != null
&& other.getHealthChecks().equals(this.getHealthChecks()) == false)
return false;
if (other.getMarker() == null ^ this.getMarker() == null)
return false;
if (other.getMarker() != null
&& other.getMarker().equals(this.getMarker()) == false)
return false;
if (other.getIsTruncated() == null ^ this.getIsTruncated() == null)
return false;
if (other.getIsTruncated() != null
&& other.getIsTruncated().equals(this.getIsTruncated()) == false)
return false;
if (other.getNextMarker() == null ^ this.getNextMarker() == null)
return false;
if (other.getNextMarker() != null
&& other.getNextMarker().equals(this.getNextMarker()) == false)
return false;
if (other.getMaxItems() == null ^ this.getMaxItems() == null)
return false;
if (other.getMaxItems() != null
&& other.getMaxItems().equals(this.getMaxItems()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime
* hashCode
+ ((getHealthChecks() == null) ? 0 : getHealthChecks()
.hashCode());
hashCode = prime * hashCode
+ ((getMarker() == null) ? 0 : getMarker().hashCode());
hashCode = prime
* hashCode
+ ((getIsTruncated() == null) ? 0 : getIsTruncated().hashCode());
hashCode = prime * hashCode
+ ((getNextMarker() == null) ? 0 : getNextMarker().hashCode());
hashCode = prime * hashCode
+ ((getMaxItems() == null) ? 0 : getMaxItems().hashCode());
return hashCode;
}
@Override
public ListHealthChecksResult clone() {
try {
return (ListHealthChecksResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException(
"Got a CloneNotSupportedException from Object.clone() "
+ "even though we're Cloneable!", e);
}
}
}