com.amazonaws.services.ec2.model.DescribeAggregateIdFormatResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 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.ec2.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceResult;
/**
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DescribeAggregateIdFormatResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* Indicates whether all resource types in the Region are configured to use longer IDs. This value is only
* true
if all users are configured to use longer IDs for all resources types in the Region.
*
*/
private Boolean useLongIdsAggregated;
/**
*
* Information about each resource's ID format.
*
*/
private com.amazonaws.internal.SdkInternalList statuses;
/**
*
* Indicates whether all resource types in the Region are configured to use longer IDs. This value is only
* true
if all users are configured to use longer IDs for all resources types in the Region.
*
*
* @param useLongIdsAggregated
* Indicates whether all resource types in the Region are configured to use longer IDs. This value is only
* true
if all users are configured to use longer IDs for all resources types in the Region.
*/
public void setUseLongIdsAggregated(Boolean useLongIdsAggregated) {
this.useLongIdsAggregated = useLongIdsAggregated;
}
/**
*
* Indicates whether all resource types in the Region are configured to use longer IDs. This value is only
* true
if all users are configured to use longer IDs for all resources types in the Region.
*
*
* @return Indicates whether all resource types in the Region are configured to use longer IDs. This value is only
* true
if all users are configured to use longer IDs for all resources types in the Region.
*/
public Boolean getUseLongIdsAggregated() {
return this.useLongIdsAggregated;
}
/**
*
* Indicates whether all resource types in the Region are configured to use longer IDs. This value is only
* true
if all users are configured to use longer IDs for all resources types in the Region.
*
*
* @param useLongIdsAggregated
* Indicates whether all resource types in the Region are configured to use longer IDs. This value is only
* true
if all users are configured to use longer IDs for all resources types in the Region.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAggregateIdFormatResult withUseLongIdsAggregated(Boolean useLongIdsAggregated) {
setUseLongIdsAggregated(useLongIdsAggregated);
return this;
}
/**
*
* Indicates whether all resource types in the Region are configured to use longer IDs. This value is only
* true
if all users are configured to use longer IDs for all resources types in the Region.
*
*
* @return Indicates whether all resource types in the Region are configured to use longer IDs. This value is only
* true
if all users are configured to use longer IDs for all resources types in the Region.
*/
public Boolean isUseLongIdsAggregated() {
return this.useLongIdsAggregated;
}
/**
*
* Information about each resource's ID format.
*
*
* @return Information about each resource's ID format.
*/
public java.util.List getStatuses() {
if (statuses == null) {
statuses = new com.amazonaws.internal.SdkInternalList();
}
return statuses;
}
/**
*
* Information about each resource's ID format.
*
*
* @param statuses
* Information about each resource's ID format.
*/
public void setStatuses(java.util.Collection statuses) {
if (statuses == null) {
this.statuses = null;
return;
}
this.statuses = new com.amazonaws.internal.SdkInternalList(statuses);
}
/**
*
* Information about each resource's ID format.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setStatuses(java.util.Collection)} or {@link #withStatuses(java.util.Collection)} if you want to override
* the existing values.
*
*
* @param statuses
* Information about each resource's ID format.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAggregateIdFormatResult withStatuses(IdFormat... statuses) {
if (this.statuses == null) {
setStatuses(new com.amazonaws.internal.SdkInternalList(statuses.length));
}
for (IdFormat ele : statuses) {
this.statuses.add(ele);
}
return this;
}
/**
*
* Information about each resource's ID format.
*
*
* @param statuses
* Information about each resource's ID format.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAggregateIdFormatResult withStatuses(java.util.Collection statuses) {
setStatuses(statuses);
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 (getUseLongIdsAggregated() != null)
sb.append("UseLongIdsAggregated: ").append(getUseLongIdsAggregated()).append(",");
if (getStatuses() != null)
sb.append("Statuses: ").append(getStatuses());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DescribeAggregateIdFormatResult == false)
return false;
DescribeAggregateIdFormatResult other = (DescribeAggregateIdFormatResult) obj;
if (other.getUseLongIdsAggregated() == null ^ this.getUseLongIdsAggregated() == null)
return false;
if (other.getUseLongIdsAggregated() != null && other.getUseLongIdsAggregated().equals(this.getUseLongIdsAggregated()) == false)
return false;
if (other.getStatuses() == null ^ this.getStatuses() == null)
return false;
if (other.getStatuses() != null && other.getStatuses().equals(this.getStatuses()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getUseLongIdsAggregated() == null) ? 0 : getUseLongIdsAggregated().hashCode());
hashCode = prime * hashCode + ((getStatuses() == null) ? 0 : getStatuses().hashCode());
return hashCode;
}
@Override
public DescribeAggregateIdFormatResult clone() {
try {
return (DescribeAggregateIdFormatResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}