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

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

/*
 * Copyright 2010-2014 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;

/**
 * 

* The ScalingPolicy data type. *

*/ public class ScalingPolicy implements Serializable { /** * The name of the Auto Scaling group associated with this scaling * policy. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/ private String autoScalingGroupName; /** * The name of the scaling policy. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/ private String policyName; /** * The number associated with the specified adjustment type. A positive * value adds to the current capacity and a negative value removes from * the current capacity. */ private Integer scalingAdjustment; /** * Specifies whether the ScalingAdjustment is an absolute * number or a percentage of the current capacity. Valid values are * ChangeInCapacity, ExactCapacity, and * PercentChangeInCapacity. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/ private String adjustmentType; /** * The amount of time, in seconds, after a scaling activity completes * before any further trigger-related scaling activities can start. */ private Integer cooldown; /** * The Amazon Resource Name (ARN) of the policy. *

* Constraints:
* Length: 1 - 1600
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/ private String policyARN; /** * A list of CloudWatch Alarms related to the policy. */ private com.amazonaws.internal.ListWithAutoConstructFlag alarms; /** * Changes the DesiredCapacity of the Auto Scaling group by * at least the specified number of instances. */ private Integer minAdjustmentStep; /** * The name of the Auto Scaling group associated with this scaling * policy. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @return The name of the Auto Scaling group associated with this scaling * policy. */ public String getAutoScalingGroupName() { return autoScalingGroupName; } /** * The name of the Auto Scaling group associated with this scaling * policy. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @param autoScalingGroupName The name of the Auto Scaling group associated with this scaling * policy. */ public void setAutoScalingGroupName(String autoScalingGroupName) { this.autoScalingGroupName = autoScalingGroupName; } /** * The name of the Auto Scaling group associated with this scaling * policy. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @param autoScalingGroupName The name of the Auto Scaling group associated with this scaling * policy. * * @return A reference to this updated object so that method calls can be chained * together. */ public ScalingPolicy withAutoScalingGroupName(String autoScalingGroupName) { this.autoScalingGroupName = autoScalingGroupName; return this; } /** * The name of the scaling policy. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @return The name of the scaling policy. */ public String getPolicyName() { return policyName; } /** * The name of the scaling policy. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @param policyName The name of the scaling policy. */ public void setPolicyName(String policyName) { this.policyName = policyName; } /** * The name of the scaling policy. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @param policyName The name of the scaling policy. * * @return A reference to this updated object so that method calls can be chained * together. */ public ScalingPolicy withPolicyName(String policyName) { this.policyName = policyName; return this; } /** * The number associated with the specified adjustment type. A positive * value adds to the current capacity and a negative value removes from * the current capacity. * * @return The number associated with the specified adjustment type. A positive * value adds to the current capacity and a negative value removes from * the current capacity. */ public Integer getScalingAdjustment() { return scalingAdjustment; } /** * The number associated with the specified adjustment type. A positive * value adds to the current capacity and a negative value removes from * the current capacity. * * @param scalingAdjustment The number associated with the specified adjustment type. A positive * value adds to the current capacity and a negative value removes from * the current capacity. */ public void setScalingAdjustment(Integer scalingAdjustment) { this.scalingAdjustment = scalingAdjustment; } /** * The number associated with the specified adjustment type. A positive * value adds to the current capacity and a negative value removes from * the current capacity. *

* Returns a reference to this object so that method calls can be chained together. * * @param scalingAdjustment The number associated with the specified adjustment type. A positive * value adds to the current capacity and a negative value removes from * the current capacity. * * @return A reference to this updated object so that method calls can be chained * together. */ public ScalingPolicy withScalingAdjustment(Integer scalingAdjustment) { this.scalingAdjustment = scalingAdjustment; return this; } /** * Specifies whether the ScalingAdjustment is an absolute * number or a percentage of the current capacity. Valid values are * ChangeInCapacity, ExactCapacity, and * PercentChangeInCapacity. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @return Specifies whether the ScalingAdjustment is an absolute * number or a percentage of the current capacity. Valid values are * ChangeInCapacity, ExactCapacity, and * PercentChangeInCapacity. */ public String getAdjustmentType() { return adjustmentType; } /** * Specifies whether the ScalingAdjustment is an absolute * number or a percentage of the current capacity. Valid values are * ChangeInCapacity, ExactCapacity, and * PercentChangeInCapacity. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @param adjustmentType Specifies whether the ScalingAdjustment is an absolute * number or a percentage of the current capacity. Valid values are * ChangeInCapacity, ExactCapacity, and * PercentChangeInCapacity. */ public void setAdjustmentType(String adjustmentType) { this.adjustmentType = adjustmentType; } /** * Specifies whether the ScalingAdjustment is an absolute * number or a percentage of the current capacity. Valid values are * ChangeInCapacity, ExactCapacity, and * PercentChangeInCapacity. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 255
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @param adjustmentType Specifies whether the ScalingAdjustment is an absolute * number or a percentage of the current capacity. Valid values are * ChangeInCapacity, ExactCapacity, and * PercentChangeInCapacity. * * @return A reference to this updated object so that method calls can be chained * together. */ public ScalingPolicy withAdjustmentType(String adjustmentType) { this.adjustmentType = adjustmentType; return this; } /** * The amount of time, in seconds, after a scaling activity completes * before any further trigger-related scaling activities can start. * * @return The amount of time, in seconds, after a scaling activity completes * before any further trigger-related scaling activities can start. */ public Integer getCooldown() { return cooldown; } /** * The amount of time, in seconds, after a scaling activity completes * before any further trigger-related scaling activities can start. * * @param cooldown The amount of time, in seconds, after a scaling activity completes * before any further trigger-related scaling activities can start. */ public void setCooldown(Integer cooldown) { this.cooldown = cooldown; } /** * The amount of time, in seconds, after a scaling activity completes * before any further trigger-related scaling activities can start. *

* Returns a reference to this object so that method calls can be chained together. * * @param cooldown The amount of time, in seconds, after a scaling activity completes * before any further trigger-related scaling activities can start. * * @return A reference to this updated object so that method calls can be chained * together. */ public ScalingPolicy withCooldown(Integer cooldown) { this.cooldown = cooldown; return this; } /** * The Amazon Resource Name (ARN) of the policy. *

* Constraints:
* Length: 1 - 1600
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @return The Amazon Resource Name (ARN) of the policy. */ public String getPolicyARN() { return policyARN; } /** * The Amazon Resource Name (ARN) of the policy. *

* Constraints:
* Length: 1 - 1600
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @param policyARN The Amazon Resource Name (ARN) of the policy. */ public void setPolicyARN(String policyARN) { this.policyARN = policyARN; } /** * The Amazon Resource Name (ARN) of the policy. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 1600
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
* * @param policyARN The Amazon Resource Name (ARN) of the policy. * * @return A reference to this updated object so that method calls can be chained * together. */ public ScalingPolicy withPolicyARN(String policyARN) { this.policyARN = policyARN; return this; } /** * A list of CloudWatch Alarms related to the policy. * * @return A list of CloudWatch Alarms related to the policy. */ public java.util.List getAlarms() { if (alarms == null) { alarms = new com.amazonaws.internal.ListWithAutoConstructFlag(); alarms.setAutoConstruct(true); } return alarms; } /** * A list of CloudWatch Alarms related to the policy. * * @param alarms A list of CloudWatch Alarms related to the policy. */ public void setAlarms(java.util.Collection alarms) { if (alarms == null) { this.alarms = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag alarmsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(alarms.size()); alarmsCopy.addAll(alarms); this.alarms = alarmsCopy; } /** * A list of CloudWatch Alarms related to the policy. *

* Returns a reference to this object so that method calls can be chained together. * * @param alarms A list of CloudWatch Alarms related to the policy. * * @return A reference to this updated object so that method calls can be chained * together. */ public ScalingPolicy withAlarms(Alarm... alarms) { if (getAlarms() == null) setAlarms(new java.util.ArrayList(alarms.length)); for (Alarm value : alarms) { getAlarms().add(value); } return this; } /** * A list of CloudWatch Alarms related to the policy. *

* Returns a reference to this object so that method calls can be chained together. * * @param alarms A list of CloudWatch Alarms related to the policy. * * @return A reference to this updated object so that method calls can be chained * together. */ public ScalingPolicy withAlarms(java.util.Collection alarms) { if (alarms == null) { this.alarms = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag alarmsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(alarms.size()); alarmsCopy.addAll(alarms); this.alarms = alarmsCopy; } return this; } /** * Changes the DesiredCapacity of the Auto Scaling group by * at least the specified number of instances. * * @return Changes the DesiredCapacity of the Auto Scaling group by * at least the specified number of instances. */ public Integer getMinAdjustmentStep() { return minAdjustmentStep; } /** * Changes the DesiredCapacity of the Auto Scaling group by * at least the specified number of instances. * * @param minAdjustmentStep Changes the DesiredCapacity of the Auto Scaling group by * at least the specified number of instances. */ public void setMinAdjustmentStep(Integer minAdjustmentStep) { this.minAdjustmentStep = minAdjustmentStep; } /** * Changes the DesiredCapacity of the Auto Scaling group by * at least the specified number of instances. *

* Returns a reference to this object so that method calls can be chained together. * * @param minAdjustmentStep Changes the DesiredCapacity of the Auto Scaling group by * at least the specified number of instances. * * @return A reference to this updated object so that method calls can be chained * together. */ public ScalingPolicy withMinAdjustmentStep(Integer minAdjustmentStep) { this.minAdjustmentStep = minAdjustmentStep; 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 (getAutoScalingGroupName() != null) sb.append("AutoScalingGroupName: " + getAutoScalingGroupName() + ","); if (getPolicyName() != null) sb.append("PolicyName: " + getPolicyName() + ","); if (getScalingAdjustment() != null) sb.append("ScalingAdjustment: " + getScalingAdjustment() + ","); if (getAdjustmentType() != null) sb.append("AdjustmentType: " + getAdjustmentType() + ","); if (getCooldown() != null) sb.append("Cooldown: " + getCooldown() + ","); if (getPolicyARN() != null) sb.append("PolicyARN: " + getPolicyARN() + ","); if (getAlarms() != null) sb.append("Alarms: " + getAlarms() + ","); if (getMinAdjustmentStep() != null) sb.append("MinAdjustmentStep: " + getMinAdjustmentStep() ); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAutoScalingGroupName() == null) ? 0 : getAutoScalingGroupName().hashCode()); hashCode = prime * hashCode + ((getPolicyName() == null) ? 0 : getPolicyName().hashCode()); hashCode = prime * hashCode + ((getScalingAdjustment() == null) ? 0 : getScalingAdjustment().hashCode()); hashCode = prime * hashCode + ((getAdjustmentType() == null) ? 0 : getAdjustmentType().hashCode()); hashCode = prime * hashCode + ((getCooldown() == null) ? 0 : getCooldown().hashCode()); hashCode = prime * hashCode + ((getPolicyARN() == null) ? 0 : getPolicyARN().hashCode()); hashCode = prime * hashCode + ((getAlarms() == null) ? 0 : getAlarms().hashCode()); hashCode = prime * hashCode + ((getMinAdjustmentStep() == null) ? 0 : getMinAdjustmentStep().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ScalingPolicy == false) return false; ScalingPolicy other = (ScalingPolicy)obj; if (other.getAutoScalingGroupName() == null ^ this.getAutoScalingGroupName() == null) return false; if (other.getAutoScalingGroupName() != null && other.getAutoScalingGroupName().equals(this.getAutoScalingGroupName()) == false) return false; if (other.getPolicyName() == null ^ this.getPolicyName() == null) return false; if (other.getPolicyName() != null && other.getPolicyName().equals(this.getPolicyName()) == false) return false; if (other.getScalingAdjustment() == null ^ this.getScalingAdjustment() == null) return false; if (other.getScalingAdjustment() != null && other.getScalingAdjustment().equals(this.getScalingAdjustment()) == false) return false; if (other.getAdjustmentType() == null ^ this.getAdjustmentType() == null) return false; if (other.getAdjustmentType() != null && other.getAdjustmentType().equals(this.getAdjustmentType()) == false) return false; if (other.getCooldown() == null ^ this.getCooldown() == null) return false; if (other.getCooldown() != null && other.getCooldown().equals(this.getCooldown()) == false) return false; if (other.getPolicyARN() == null ^ this.getPolicyARN() == null) return false; if (other.getPolicyARN() != null && other.getPolicyARN().equals(this.getPolicyARN()) == false) return false; if (other.getAlarms() == null ^ this.getAlarms() == null) return false; if (other.getAlarms() != null && other.getAlarms().equals(this.getAlarms()) == false) return false; if (other.getMinAdjustmentStep() == null ^ this.getMinAdjustmentStep() == null) return false; if (other.getMinAdjustmentStep() != null && other.getMinAdjustmentStep().equals(this.getMinAdjustmentStep()) == false) return false; return true; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy