com.amazonaws.services.autoscaling.model.DescribeAccountLimitsResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-autoscaling Show documentation
/*
* Copyright 2012-2017 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.autoscaling.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* Contains the parameters for DescribeAccountLimits.
*
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DescribeAccountLimitsResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The maximum number of groups allowed for your AWS account. The default limit is 20 per region.
*
*/
private Integer maxNumberOfAutoScalingGroups;
/**
*
* The maximum number of launch configurations allowed for your AWS account. The default limit is 100 per region.
*
*/
private Integer maxNumberOfLaunchConfigurations;
/**
*
* The current number of groups for your AWS account.
*
*/
private Integer numberOfAutoScalingGroups;
/**
*
* The current number of launch configurations for your AWS account.
*
*/
private Integer numberOfLaunchConfigurations;
/**
*
* The maximum number of groups allowed for your AWS account. The default limit is 20 per region.
*
*
* @param maxNumberOfAutoScalingGroups
* The maximum number of groups allowed for your AWS account. The default limit is 20 per region.
*/
public void setMaxNumberOfAutoScalingGroups(Integer maxNumberOfAutoScalingGroups) {
this.maxNumberOfAutoScalingGroups = maxNumberOfAutoScalingGroups;
}
/**
*
* The maximum number of groups allowed for your AWS account. The default limit is 20 per region.
*
*
* @return The maximum number of groups allowed for your AWS account. The default limit is 20 per region.
*/
public Integer getMaxNumberOfAutoScalingGroups() {
return this.maxNumberOfAutoScalingGroups;
}
/**
*
* The maximum number of groups allowed for your AWS account. The default limit is 20 per region.
*
*
* @param maxNumberOfAutoScalingGroups
* The maximum number of groups allowed for your AWS account. The default limit is 20 per region.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAccountLimitsResult withMaxNumberOfAutoScalingGroups(Integer maxNumberOfAutoScalingGroups) {
setMaxNumberOfAutoScalingGroups(maxNumberOfAutoScalingGroups);
return this;
}
/**
*
* The maximum number of launch configurations allowed for your AWS account. The default limit is 100 per region.
*
*
* @param maxNumberOfLaunchConfigurations
* The maximum number of launch configurations allowed for your AWS account. The default limit is 100 per
* region.
*/
public void setMaxNumberOfLaunchConfigurations(Integer maxNumberOfLaunchConfigurations) {
this.maxNumberOfLaunchConfigurations = maxNumberOfLaunchConfigurations;
}
/**
*
* The maximum number of launch configurations allowed for your AWS account. The default limit is 100 per region.
*
*
* @return The maximum number of launch configurations allowed for your AWS account. The default limit is 100 per
* region.
*/
public Integer getMaxNumberOfLaunchConfigurations() {
return this.maxNumberOfLaunchConfigurations;
}
/**
*
* The maximum number of launch configurations allowed for your AWS account. The default limit is 100 per region.
*
*
* @param maxNumberOfLaunchConfigurations
* The maximum number of launch configurations allowed for your AWS account. The default limit is 100 per
* region.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAccountLimitsResult withMaxNumberOfLaunchConfigurations(Integer maxNumberOfLaunchConfigurations) {
setMaxNumberOfLaunchConfigurations(maxNumberOfLaunchConfigurations);
return this;
}
/**
*
* The current number of groups for your AWS account.
*
*
* @param numberOfAutoScalingGroups
* The current number of groups for your AWS account.
*/
public void setNumberOfAutoScalingGroups(Integer numberOfAutoScalingGroups) {
this.numberOfAutoScalingGroups = numberOfAutoScalingGroups;
}
/**
*
* The current number of groups for your AWS account.
*
*
* @return The current number of groups for your AWS account.
*/
public Integer getNumberOfAutoScalingGroups() {
return this.numberOfAutoScalingGroups;
}
/**
*
* The current number of groups for your AWS account.
*
*
* @param numberOfAutoScalingGroups
* The current number of groups for your AWS account.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAccountLimitsResult withNumberOfAutoScalingGroups(Integer numberOfAutoScalingGroups) {
setNumberOfAutoScalingGroups(numberOfAutoScalingGroups);
return this;
}
/**
*
* The current number of launch configurations for your AWS account.
*
*
* @param numberOfLaunchConfigurations
* The current number of launch configurations for your AWS account.
*/
public void setNumberOfLaunchConfigurations(Integer numberOfLaunchConfigurations) {
this.numberOfLaunchConfigurations = numberOfLaunchConfigurations;
}
/**
*
* The current number of launch configurations for your AWS account.
*
*
* @return The current number of launch configurations for your AWS account.
*/
public Integer getNumberOfLaunchConfigurations() {
return this.numberOfLaunchConfigurations;
}
/**
*
* The current number of launch configurations for your AWS account.
*
*
* @param numberOfLaunchConfigurations
* The current number of launch configurations for your AWS account.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeAccountLimitsResult withNumberOfLaunchConfigurations(Integer numberOfLaunchConfigurations) {
setNumberOfLaunchConfigurations(numberOfLaunchConfigurations);
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 (getMaxNumberOfAutoScalingGroups() != null)
sb.append("MaxNumberOfAutoScalingGroups: ").append(getMaxNumberOfAutoScalingGroups()).append(",");
if (getMaxNumberOfLaunchConfigurations() != null)
sb.append("MaxNumberOfLaunchConfigurations: ").append(getMaxNumberOfLaunchConfigurations()).append(",");
if (getNumberOfAutoScalingGroups() != null)
sb.append("NumberOfAutoScalingGroups: ").append(getNumberOfAutoScalingGroups()).append(",");
if (getNumberOfLaunchConfigurations() != null)
sb.append("NumberOfLaunchConfigurations: ").append(getNumberOfLaunchConfigurations());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DescribeAccountLimitsResult == false)
return false;
DescribeAccountLimitsResult other = (DescribeAccountLimitsResult) obj;
if (other.getMaxNumberOfAutoScalingGroups() == null ^ this.getMaxNumberOfAutoScalingGroups() == null)
return false;
if (other.getMaxNumberOfAutoScalingGroups() != null && other.getMaxNumberOfAutoScalingGroups().equals(this.getMaxNumberOfAutoScalingGroups()) == false)
return false;
if (other.getMaxNumberOfLaunchConfigurations() == null ^ this.getMaxNumberOfLaunchConfigurations() == null)
return false;
if (other.getMaxNumberOfLaunchConfigurations() != null
&& other.getMaxNumberOfLaunchConfigurations().equals(this.getMaxNumberOfLaunchConfigurations()) == false)
return false;
if (other.getNumberOfAutoScalingGroups() == null ^ this.getNumberOfAutoScalingGroups() == null)
return false;
if (other.getNumberOfAutoScalingGroups() != null && other.getNumberOfAutoScalingGroups().equals(this.getNumberOfAutoScalingGroups()) == false)
return false;
if (other.getNumberOfLaunchConfigurations() == null ^ this.getNumberOfLaunchConfigurations() == null)
return false;
if (other.getNumberOfLaunchConfigurations() != null && other.getNumberOfLaunchConfigurations().equals(this.getNumberOfLaunchConfigurations()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getMaxNumberOfAutoScalingGroups() == null) ? 0 : getMaxNumberOfAutoScalingGroups().hashCode());
hashCode = prime * hashCode + ((getMaxNumberOfLaunchConfigurations() == null) ? 0 : getMaxNumberOfLaunchConfigurations().hashCode());
hashCode = prime * hashCode + ((getNumberOfAutoScalingGroups() == null) ? 0 : getNumberOfAutoScalingGroups().hashCode());
hashCode = prime * hashCode + ((getNumberOfLaunchConfigurations() == null) ? 0 : getNumberOfLaunchConfigurations().hashCode());
return hashCode;
}
@Override
public DescribeAccountLimitsResult clone() {
try {
return (DescribeAccountLimitsResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}