/* * Copyright 2010-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.autoscaling.model; import java.io.Serializable; public class DescribeAccountLimitsResult implements Serializable { /** * <p> * The maximum number of groups allowed for your AWS account. The default * limit is 20 per region. * </p> */ private Integer maxNumberOfAutoScalingGroups; /** * <p> * The maximum number of launch configurations allowed for your AWS account. * The default limit is 100 per region. * </p> */ private Integer maxNumberOfLaunchConfigurations; /** * <p> * The current number of groups for your AWS account. * </p> */ private Integer numberOfAutoScalingGroups; /** * <p> * The current number of launch configurations for your AWS account. * </p> */ private Integer numberOfLaunchConfigurations; /** * <p> * The maximum number of groups allowed for your AWS account. The default * limit is 20 per region. * </p> * * @return <p> * The maximum number of groups allowed for your AWS account. The * default limit is 20 per region. * </p> */ public Integer getMaxNumberOfAutoScalingGroups() { return maxNumberOfAutoScalingGroups; } /** * <p> * The maximum number of groups allowed for your AWS account. The default * limit is 20 per region. * </p> * * @param maxNumberOfAutoScalingGroups <p> * The maximum number of groups allowed for your AWS account. The * default limit is 20 per region. * </p> */ public void setMaxNumberOfAutoScalingGroups(Integer maxNumberOfAutoScalingGroups) { this.maxNumberOfAutoScalingGroups = maxNumberOfAutoScalingGroups; } /** * <p> * The maximum number of groups allowed for your AWS account. The default * limit is 20 per region. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param maxNumberOfAutoScalingGroups <p> * The maximum number of groups allowed for your AWS account. The * default limit is 20 per region. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public DescribeAccountLimitsResult withMaxNumberOfAutoScalingGroups( Integer maxNumberOfAutoScalingGroups) { this.maxNumberOfAutoScalingGroups = maxNumberOfAutoScalingGroups; return this; } /** * <p> * The maximum number of launch configurations allowed for your AWS account. * The default limit is 100 per region. * </p> * * @return <p> * The maximum number of launch configurations allowed for your AWS * account. The default limit is 100 per region. * </p> */ public Integer getMaxNumberOfLaunchConfigurations() { return maxNumberOfLaunchConfigurations; } /** * <p> * The maximum number of launch configurations allowed for your AWS account. * The default limit is 100 per region. * </p> * * @param maxNumberOfLaunchConfigurations <p> * The maximum number of launch configurations allowed for your * AWS account. The default limit is 100 per region. * </p> */ public void setMaxNumberOfLaunchConfigurations(Integer maxNumberOfLaunchConfigurations) { this.maxNumberOfLaunchConfigurations = maxNumberOfLaunchConfigurations; } /** * <p> * The maximum number of launch configurations allowed for your AWS account. * The default limit is 100 per region. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param maxNumberOfLaunchConfigurations <p> * The maximum number of launch configurations allowed for your * AWS account. The default limit is 100 per region. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public DescribeAccountLimitsResult withMaxNumberOfLaunchConfigurations( Integer maxNumberOfLaunchConfigurations) { this.maxNumberOfLaunchConfigurations = maxNumberOfLaunchConfigurations; return this; } /** * <p> * The current number of groups for your AWS account. * </p> * * @return <p> * The current number of groups for your AWS account. * </p> */ public Integer getNumberOfAutoScalingGroups() { return numberOfAutoScalingGroups; } /** * <p> * The current number of groups for your AWS account. * </p> * * @param numberOfAutoScalingGroups <p> * The current number of groups for your AWS account. * </p> */ public void setNumberOfAutoScalingGroups(Integer numberOfAutoScalingGroups) { this.numberOfAutoScalingGroups = numberOfAutoScalingGroups; } /** * <p> * The current number of groups for your AWS account. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param numberOfAutoScalingGroups <p> * The current number of groups for your AWS account. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public DescribeAccountLimitsResult withNumberOfAutoScalingGroups( Integer numberOfAutoScalingGroups) { this.numberOfAutoScalingGroups = numberOfAutoScalingGroups; return this; } /** * <p> * The current number of launch configurations for your AWS account. * </p> * * @return <p> * The current number of launch configurations for your AWS account. * </p> */ public Integer getNumberOfLaunchConfigurations() { return numberOfLaunchConfigurations; } /** * <p> * The current number of launch configurations for your AWS account. * </p> * * @param numberOfLaunchConfigurations <p> * The current number of launch configurations for your AWS * account. * </p> */ public void setNumberOfLaunchConfigurations(Integer numberOfLaunchConfigurations) { this.numberOfLaunchConfigurations = numberOfLaunchConfigurations; } /** * <p> * The current number of launch configurations for your AWS account. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param numberOfLaunchConfigurations <p> * The current number of launch configurations for your AWS * account. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public DescribeAccountLimitsResult withNumberOfLaunchConfigurations( Integer numberOfLaunchConfigurations) { this.numberOfLaunchConfigurations = 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: " + getMaxNumberOfAutoScalingGroups() + ","); if (getMaxNumberOfLaunchConfigurations() != null) sb.append("MaxNumberOfLaunchConfigurations: " + getMaxNumberOfLaunchConfigurations() + ","); if (getNumberOfAutoScalingGroups() != null) sb.append("NumberOfAutoScalingGroups: " + getNumberOfAutoScalingGroups() + ","); if (getNumberOfLaunchConfigurations() != null) sb.append("NumberOfLaunchConfigurations: " + getNumberOfLaunchConfigurations()); sb.append("}"); return sb.toString(); } @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 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; } }