All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.autoscaling.model.DescribeAccountLimitsResult Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * 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.autoscaling.model;

import java.io.Serializable;

/**
 * 
 */
public class DescribeAccountLimitsResult 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: " + 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 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); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy