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

com.amazonaws.services.autoscaling.model.ScheduledUpdateGroupAction 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 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;

/**
 * 

* Describes a scheduled update to an Auto Scaling group. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ScheduledUpdateGroupAction implements Serializable, Cloneable { /** *

* The name of the group. *

*/ private String autoScalingGroupName; /** *

* The name of the scheduled action. *

*/ private String scheduledActionName; /** *

* The Amazon Resource Name (ARN) of the scheduled action. *

*/ private String scheduledActionARN; /** *

* This parameter is deprecated. *

*/ private java.util.Date time; /** *

* The date and time that the action is scheduled to begin. This date and time can be up to one month in the future. *

*

* When StartTime and EndTime are specified with Recurrence, they form the * boundaries of when the recurring action will start and stop. *

*/ private java.util.Date startTime; /** *

* The date and time that the action is scheduled to end. This date and time can be up to one month in the future. *

*/ private java.util.Date endTime; /** *

* The recurring schedule for the action. *

*/ private String recurrence; /** *

* The minimum size of the group. *

*/ private Integer minSize; /** *

* The maximum size of the group. *

*/ private Integer maxSize; /** *

* The number of instances you prefer to maintain in the group. *

*/ private Integer desiredCapacity; /** *

* The name of the group. *

* * @param autoScalingGroupName * The name of the group. */ public void setAutoScalingGroupName(String autoScalingGroupName) { this.autoScalingGroupName = autoScalingGroupName; } /** *

* The name of the group. *

* * @return The name of the group. */ public String getAutoScalingGroupName() { return this.autoScalingGroupName; } /** *

* The name of the group. *

* * @param autoScalingGroupName * The name of the group. * @return Returns a reference to this object so that method calls can be chained together. */ public ScheduledUpdateGroupAction withAutoScalingGroupName(String autoScalingGroupName) { setAutoScalingGroupName(autoScalingGroupName); return this; } /** *

* The name of the scheduled action. *

* * @param scheduledActionName * The name of the scheduled action. */ public void setScheduledActionName(String scheduledActionName) { this.scheduledActionName = scheduledActionName; } /** *

* The name of the scheduled action. *

* * @return The name of the scheduled action. */ public String getScheduledActionName() { return this.scheduledActionName; } /** *

* The name of the scheduled action. *

* * @param scheduledActionName * The name of the scheduled action. * @return Returns a reference to this object so that method calls can be chained together. */ public ScheduledUpdateGroupAction withScheduledActionName(String scheduledActionName) { setScheduledActionName(scheduledActionName); return this; } /** *

* The Amazon Resource Name (ARN) of the scheduled action. *

* * @param scheduledActionARN * The Amazon Resource Name (ARN) of the scheduled action. */ public void setScheduledActionARN(String scheduledActionARN) { this.scheduledActionARN = scheduledActionARN; } /** *

* The Amazon Resource Name (ARN) of the scheduled action. *

* * @return The Amazon Resource Name (ARN) of the scheduled action. */ public String getScheduledActionARN() { return this.scheduledActionARN; } /** *

* The Amazon Resource Name (ARN) of the scheduled action. *

* * @param scheduledActionARN * The Amazon Resource Name (ARN) of the scheduled action. * @return Returns a reference to this object so that method calls can be chained together. */ public ScheduledUpdateGroupAction withScheduledActionARN(String scheduledActionARN) { setScheduledActionARN(scheduledActionARN); return this; } /** *

* This parameter is deprecated. *

* * @param time * This parameter is deprecated. */ public void setTime(java.util.Date time) { this.time = time; } /** *

* This parameter is deprecated. *

* * @return This parameter is deprecated. */ public java.util.Date getTime() { return this.time; } /** *

* This parameter is deprecated. *

* * @param time * This parameter is deprecated. * @return Returns a reference to this object so that method calls can be chained together. */ public ScheduledUpdateGroupAction withTime(java.util.Date time) { setTime(time); return this; } /** *

* The date and time that the action is scheduled to begin. This date and time can be up to one month in the future. *

*

* When StartTime and EndTime are specified with Recurrence, they form the * boundaries of when the recurring action will start and stop. *

* * @param startTime * The date and time that the action is scheduled to begin. This date and time can be up to one month in the * future.

*

* When StartTime and EndTime are specified with Recurrence, they form * the boundaries of when the recurring action will start and stop. */ public void setStartTime(java.util.Date startTime) { this.startTime = startTime; } /** *

* The date and time that the action is scheduled to begin. This date and time can be up to one month in the future. *

*

* When StartTime and EndTime are specified with Recurrence, they form the * boundaries of when the recurring action will start and stop. *

* * @return The date and time that the action is scheduled to begin. This date and time can be up to one month in the * future.

*

* When StartTime and EndTime are specified with Recurrence, they * form the boundaries of when the recurring action will start and stop. */ public java.util.Date getStartTime() { return this.startTime; } /** *

* The date and time that the action is scheduled to begin. This date and time can be up to one month in the future. *

*

* When StartTime and EndTime are specified with Recurrence, they form the * boundaries of when the recurring action will start and stop. *

* * @param startTime * The date and time that the action is scheduled to begin. This date and time can be up to one month in the * future.

*

* When StartTime and EndTime are specified with Recurrence, they form * the boundaries of when the recurring action will start and stop. * @return Returns a reference to this object so that method calls can be chained together. */ public ScheduledUpdateGroupAction withStartTime(java.util.Date startTime) { setStartTime(startTime); return this; } /** *

* The date and time that the action is scheduled to end. This date and time can be up to one month in the future. *

* * @param endTime * The date and time that the action is scheduled to end. This date and time can be up to one month in the * future. */ public void setEndTime(java.util.Date endTime) { this.endTime = endTime; } /** *

* The date and time that the action is scheduled to end. This date and time can be up to one month in the future. *

* * @return The date and time that the action is scheduled to end. This date and time can be up to one month in the * future. */ public java.util.Date getEndTime() { return this.endTime; } /** *

* The date and time that the action is scheduled to end. This date and time can be up to one month in the future. *

* * @param endTime * The date and time that the action is scheduled to end. This date and time can be up to one month in the * future. * @return Returns a reference to this object so that method calls can be chained together. */ public ScheduledUpdateGroupAction withEndTime(java.util.Date endTime) { setEndTime(endTime); return this; } /** *

* The recurring schedule for the action. *

* * @param recurrence * The recurring schedule for the action. */ public void setRecurrence(String recurrence) { this.recurrence = recurrence; } /** *

* The recurring schedule for the action. *

* * @return The recurring schedule for the action. */ public String getRecurrence() { return this.recurrence; } /** *

* The recurring schedule for the action. *

* * @param recurrence * The recurring schedule for the action. * @return Returns a reference to this object so that method calls can be chained together. */ public ScheduledUpdateGroupAction withRecurrence(String recurrence) { setRecurrence(recurrence); return this; } /** *

* The minimum size of the group. *

* * @param minSize * The minimum size of the group. */ public void setMinSize(Integer minSize) { this.minSize = minSize; } /** *

* The minimum size of the group. *

* * @return The minimum size of the group. */ public Integer getMinSize() { return this.minSize; } /** *

* The minimum size of the group. *

* * @param minSize * The minimum size of the group. * @return Returns a reference to this object so that method calls can be chained together. */ public ScheduledUpdateGroupAction withMinSize(Integer minSize) { setMinSize(minSize); return this; } /** *

* The maximum size of the group. *

* * @param maxSize * The maximum size of the group. */ public void setMaxSize(Integer maxSize) { this.maxSize = maxSize; } /** *

* The maximum size of the group. *

* * @return The maximum size of the group. */ public Integer getMaxSize() { return this.maxSize; } /** *

* The maximum size of the group. *

* * @param maxSize * The maximum size of the group. * @return Returns a reference to this object so that method calls can be chained together. */ public ScheduledUpdateGroupAction withMaxSize(Integer maxSize) { setMaxSize(maxSize); return this; } /** *

* The number of instances you prefer to maintain in the group. *

* * @param desiredCapacity * The number of instances you prefer to maintain in the group. */ public void setDesiredCapacity(Integer desiredCapacity) { this.desiredCapacity = desiredCapacity; } /** *

* The number of instances you prefer to maintain in the group. *

* * @return The number of instances you prefer to maintain in the group. */ public Integer getDesiredCapacity() { return this.desiredCapacity; } /** *

* The number of instances you prefer to maintain in the group. *

* * @param desiredCapacity * The number of instances you prefer to maintain in the group. * @return Returns a reference to this object so that method calls can be chained together. */ public ScheduledUpdateGroupAction withDesiredCapacity(Integer desiredCapacity) { setDesiredCapacity(desiredCapacity); 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: ").append(getAutoScalingGroupName()).append(","); if (getScheduledActionName() != null) sb.append("ScheduledActionName: ").append(getScheduledActionName()).append(","); if (getScheduledActionARN() != null) sb.append("ScheduledActionARN: ").append(getScheduledActionARN()).append(","); if (getTime() != null) sb.append("Time: ").append(getTime()).append(","); if (getStartTime() != null) sb.append("StartTime: ").append(getStartTime()).append(","); if (getEndTime() != null) sb.append("EndTime: ").append(getEndTime()).append(","); if (getRecurrence() != null) sb.append("Recurrence: ").append(getRecurrence()).append(","); if (getMinSize() != null) sb.append("MinSize: ").append(getMinSize()).append(","); if (getMaxSize() != null) sb.append("MaxSize: ").append(getMaxSize()).append(","); if (getDesiredCapacity() != null) sb.append("DesiredCapacity: ").append(getDesiredCapacity()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ScheduledUpdateGroupAction == false) return false; ScheduledUpdateGroupAction other = (ScheduledUpdateGroupAction) obj; if (other.getAutoScalingGroupName() == null ^ this.getAutoScalingGroupName() == null) return false; if (other.getAutoScalingGroupName() != null && other.getAutoScalingGroupName().equals(this.getAutoScalingGroupName()) == false) return false; if (other.getScheduledActionName() == null ^ this.getScheduledActionName() == null) return false; if (other.getScheduledActionName() != null && other.getScheduledActionName().equals(this.getScheduledActionName()) == false) return false; if (other.getScheduledActionARN() == null ^ this.getScheduledActionARN() == null) return false; if (other.getScheduledActionARN() != null && other.getScheduledActionARN().equals(this.getScheduledActionARN()) == false) return false; if (other.getTime() == null ^ this.getTime() == null) return false; if (other.getTime() != null && other.getTime().equals(this.getTime()) == false) return false; if (other.getStartTime() == null ^ this.getStartTime() == null) return false; if (other.getStartTime() != null && other.getStartTime().equals(this.getStartTime()) == false) return false; if (other.getEndTime() == null ^ this.getEndTime() == null) return false; if (other.getEndTime() != null && other.getEndTime().equals(this.getEndTime()) == false) return false; if (other.getRecurrence() == null ^ this.getRecurrence() == null) return false; if (other.getRecurrence() != null && other.getRecurrence().equals(this.getRecurrence()) == false) return false; if (other.getMinSize() == null ^ this.getMinSize() == null) return false; if (other.getMinSize() != null && other.getMinSize().equals(this.getMinSize()) == false) return false; if (other.getMaxSize() == null ^ this.getMaxSize() == null) return false; if (other.getMaxSize() != null && other.getMaxSize().equals(this.getMaxSize()) == false) return false; if (other.getDesiredCapacity() == null ^ this.getDesiredCapacity() == null) return false; if (other.getDesiredCapacity() != null && other.getDesiredCapacity().equals(this.getDesiredCapacity()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAutoScalingGroupName() == null) ? 0 : getAutoScalingGroupName().hashCode()); hashCode = prime * hashCode + ((getScheduledActionName() == null) ? 0 : getScheduledActionName().hashCode()); hashCode = prime * hashCode + ((getScheduledActionARN() == null) ? 0 : getScheduledActionARN().hashCode()); hashCode = prime * hashCode + ((getTime() == null) ? 0 : getTime().hashCode()); hashCode = prime * hashCode + ((getStartTime() == null) ? 0 : getStartTime().hashCode()); hashCode = prime * hashCode + ((getEndTime() == null) ? 0 : getEndTime().hashCode()); hashCode = prime * hashCode + ((getRecurrence() == null) ? 0 : getRecurrence().hashCode()); hashCode = prime * hashCode + ((getMinSize() == null) ? 0 : getMinSize().hashCode()); hashCode = prime * hashCode + ((getMaxSize() == null) ? 0 : getMaxSize().hashCode()); hashCode = prime * hashCode + ((getDesiredCapacity() == null) ? 0 : getDesiredCapacity().hashCode()); return hashCode; } @Override public ScheduledUpdateGroupAction clone() { try { return (ScheduledUpdateGroupAction) 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