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 Java SDK for Auto Scaling module holds the client classes that are used for communicating with Auto Scaling Service

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2016-2021 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;

/**
 * 
 * @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 account. The default is 200 groups per Region. *

*/ private Integer maxNumberOfAutoScalingGroups; /** *

* The maximum number of launch configurations allowed for your account. The default is 200 launch configurations * per Region. *

*/ private Integer maxNumberOfLaunchConfigurations; /** *

* The current number of groups for your account. *

*/ private Integer numberOfAutoScalingGroups; /** *

* The current number of launch configurations for your account. *

*/ private Integer numberOfLaunchConfigurations; /** *

* The maximum number of groups allowed for your account. The default is 200 groups per Region. *

* * @param maxNumberOfAutoScalingGroups * The maximum number of groups allowed for your account. The default is 200 groups per Region. */ public void setMaxNumberOfAutoScalingGroups(Integer maxNumberOfAutoScalingGroups) { this.maxNumberOfAutoScalingGroups = maxNumberOfAutoScalingGroups; } /** *

* The maximum number of groups allowed for your account. The default is 200 groups per Region. *

* * @return The maximum number of groups allowed for your account. The default is 200 groups per Region. */ public Integer getMaxNumberOfAutoScalingGroups() { return this.maxNumberOfAutoScalingGroups; } /** *

* The maximum number of groups allowed for your account. The default is 200 groups per Region. *

* * @param maxNumberOfAutoScalingGroups * The maximum number of groups allowed for your account. The default is 200 groups 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 account. The default is 200 launch configurations * per Region. *

* * @param maxNumberOfLaunchConfigurations * The maximum number of launch configurations allowed for your account. The default is 200 launch * configurations per Region. */ public void setMaxNumberOfLaunchConfigurations(Integer maxNumberOfLaunchConfigurations) { this.maxNumberOfLaunchConfigurations = maxNumberOfLaunchConfigurations; } /** *

* The maximum number of launch configurations allowed for your account. The default is 200 launch configurations * per Region. *

* * @return The maximum number of launch configurations allowed for your account. The default is 200 launch * configurations per Region. */ public Integer getMaxNumberOfLaunchConfigurations() { return this.maxNumberOfLaunchConfigurations; } /** *

* The maximum number of launch configurations allowed for your account. The default is 200 launch configurations * per Region. *

* * @param maxNumberOfLaunchConfigurations * The maximum number of launch configurations allowed for your account. The default is 200 launch * configurations 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 account. *

* * @param numberOfAutoScalingGroups * The current number of groups for your account. */ public void setNumberOfAutoScalingGroups(Integer numberOfAutoScalingGroups) { this.numberOfAutoScalingGroups = numberOfAutoScalingGroups; } /** *

* The current number of groups for your account. *

* * @return The current number of groups for your account. */ public Integer getNumberOfAutoScalingGroups() { return this.numberOfAutoScalingGroups; } /** *

* The current number of groups for your account. *

* * @param numberOfAutoScalingGroups * The current number of groups for your 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 account. *

* * @param numberOfLaunchConfigurations * The current number of launch configurations for your account. */ public void setNumberOfLaunchConfigurations(Integer numberOfLaunchConfigurations) { this.numberOfLaunchConfigurations = numberOfLaunchConfigurations; } /** *

* The current number of launch configurations for your account. *

* * @return The current number of launch configurations for your account. */ public Integer getNumberOfLaunchConfigurations() { return this.numberOfLaunchConfigurations; } /** *

* The current number of launch configurations for your account. *

* * @param numberOfLaunchConfigurations * The current number of launch configurations for your 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. 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 (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); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy