/* * Copyright 2018-2023 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.cloudsearchv2.model; import java.io.Serializable; import javax.annotation.Generated; /** *
* The desired instance type and desired number of replicas of each index partition. *
*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ScalingParameters implements Serializable, Cloneable { /** *
* The instance type that you want to preconfigure for your domain. For example, search.m1.small
.
*
* The number of replicas you want to preconfigure for each index partition. *
*/ private Integer desiredReplicationCount; /** *
* The number of partitions you want to preconfigure for your domain. Only valid when you select
* m2.2xlarge
as the desired instance type.
*
* The instance type that you want to preconfigure for your domain. For example, search.m1.small
.
*
search.m1.small
* .
* @see PartitionInstanceType
*/
public void setDesiredInstanceType(String desiredInstanceType) {
this.desiredInstanceType = desiredInstanceType;
}
/**
*
* The instance type that you want to preconfigure for your domain. For example, search.m1.small
.
*
search.m1.small
.
* @see PartitionInstanceType
*/
public String getDesiredInstanceType() {
return this.desiredInstanceType;
}
/**
*
* The instance type that you want to preconfigure for your domain. For example, search.m1.small
.
*
search.m1.small
* .
* @return Returns a reference to this object so that method calls can be chained together.
* @see PartitionInstanceType
*/
public ScalingParameters withDesiredInstanceType(String desiredInstanceType) {
setDesiredInstanceType(desiredInstanceType);
return this;
}
/**
*
* The instance type that you want to preconfigure for your domain. For example, search.m1.small
.
*
search.m1.small
* .
* @see PartitionInstanceType
*/
public void setDesiredInstanceType(PartitionInstanceType desiredInstanceType) {
withDesiredInstanceType(desiredInstanceType);
}
/**
*
* The instance type that you want to preconfigure for your domain. For example, search.m1.small
.
*
search.m1.small
* .
* @return Returns a reference to this object so that method calls can be chained together.
* @see PartitionInstanceType
*/
public ScalingParameters withDesiredInstanceType(PartitionInstanceType desiredInstanceType) {
this.desiredInstanceType = desiredInstanceType.toString();
return this;
}
/**
* * The number of replicas you want to preconfigure for each index partition. *
* * @param desiredReplicationCount * The number of replicas you want to preconfigure for each index partition. */ public void setDesiredReplicationCount(Integer desiredReplicationCount) { this.desiredReplicationCount = desiredReplicationCount; } /** ** The number of replicas you want to preconfigure for each index partition. *
* * @return The number of replicas you want to preconfigure for each index partition. */ public Integer getDesiredReplicationCount() { return this.desiredReplicationCount; } /** ** The number of replicas you want to preconfigure for each index partition. *
* * @param desiredReplicationCount * The number of replicas you want to preconfigure for each index partition. * @return Returns a reference to this object so that method calls can be chained together. */ public ScalingParameters withDesiredReplicationCount(Integer desiredReplicationCount) { setDesiredReplicationCount(desiredReplicationCount); return this; } /** *
* The number of partitions you want to preconfigure for your domain. Only valid when you select
* m2.2xlarge
as the desired instance type.
*
m2.2xlarge
as the desired instance type.
*/
public void setDesiredPartitionCount(Integer desiredPartitionCount) {
this.desiredPartitionCount = desiredPartitionCount;
}
/**
*
* The number of partitions you want to preconfigure for your domain. Only valid when you select
* m2.2xlarge
as the desired instance type.
*
m2.2xlarge
as the desired instance type.
*/
public Integer getDesiredPartitionCount() {
return this.desiredPartitionCount;
}
/**
*
* The number of partitions you want to preconfigure for your domain. Only valid when you select
* m2.2xlarge
as the desired instance type.
*
m2.2xlarge
as the desired instance type.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ScalingParameters withDesiredPartitionCount(Integer desiredPartitionCount) {
setDesiredPartitionCount(desiredPartitionCount);
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 (getDesiredInstanceType() != null)
sb.append("DesiredInstanceType: ").append(getDesiredInstanceType()).append(",");
if (getDesiredReplicationCount() != null)
sb.append("DesiredReplicationCount: ").append(getDesiredReplicationCount()).append(",");
if (getDesiredPartitionCount() != null)
sb.append("DesiredPartitionCount: ").append(getDesiredPartitionCount());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ScalingParameters == false)
return false;
ScalingParameters other = (ScalingParameters) obj;
if (other.getDesiredInstanceType() == null ^ this.getDesiredInstanceType() == null)
return false;
if (other.getDesiredInstanceType() != null && other.getDesiredInstanceType().equals(this.getDesiredInstanceType()) == false)
return false;
if (other.getDesiredReplicationCount() == null ^ this.getDesiredReplicationCount() == null)
return false;
if (other.getDesiredReplicationCount() != null && other.getDesiredReplicationCount().equals(this.getDesiredReplicationCount()) == false)
return false;
if (other.getDesiredPartitionCount() == null ^ this.getDesiredPartitionCount() == null)
return false;
if (other.getDesiredPartitionCount() != null && other.getDesiredPartitionCount().equals(this.getDesiredPartitionCount()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDesiredInstanceType() == null) ? 0 : getDesiredInstanceType().hashCode());
hashCode = prime * hashCode + ((getDesiredReplicationCount() == null) ? 0 : getDesiredReplicationCount().hashCode());
hashCode = prime * hashCode + ((getDesiredPartitionCount() == null) ? 0 : getDesiredPartitionCount().hashCode());
return hashCode;
}
@Override
public ScalingParameters clone() {
try {
return (ScalingParameters) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}