com.amazonaws.services.kafkaconnect.model.AutoScaling Maven / Gradle / Ivy
Show all versions of aws-java-sdk-kafkaconnect Show documentation
/*
* Copyright 2019-2024 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.kafkaconnect.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Specifies how the connector scales.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AutoScaling implements Serializable, Cloneable, StructuredPojo {
/**
*
* The maximum number of workers allocated to the connector.
*
*/
private Integer maxWorkerCount;
/**
*
* The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.
*
*/
private Integer mcuCount;
/**
*
* The minimum number of workers allocated to the connector.
*
*/
private Integer minWorkerCount;
/**
*
* The sacle-in policy for the connector.
*
*/
private ScaleInPolicy scaleInPolicy;
/**
*
* The sacle-out policy for the connector.
*
*/
private ScaleOutPolicy scaleOutPolicy;
/**
*
* The maximum number of workers allocated to the connector.
*
*
* @param maxWorkerCount
* The maximum number of workers allocated to the connector.
*/
public void setMaxWorkerCount(Integer maxWorkerCount) {
this.maxWorkerCount = maxWorkerCount;
}
/**
*
* The maximum number of workers allocated to the connector.
*
*
* @return The maximum number of workers allocated to the connector.
*/
public Integer getMaxWorkerCount() {
return this.maxWorkerCount;
}
/**
*
* The maximum number of workers allocated to the connector.
*
*
* @param maxWorkerCount
* The maximum number of workers allocated to the connector.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AutoScaling withMaxWorkerCount(Integer maxWorkerCount) {
setMaxWorkerCount(maxWorkerCount);
return this;
}
/**
*
* The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.
*
*
* @param mcuCount
* The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are
* 1,2,4,8.
*/
public void setMcuCount(Integer mcuCount) {
this.mcuCount = mcuCount;
}
/**
*
* The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.
*
*
* @return The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are
* 1,2,4,8.
*/
public Integer getMcuCount() {
return this.mcuCount;
}
/**
*
* The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.
*
*
* @param mcuCount
* The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are
* 1,2,4,8.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AutoScaling withMcuCount(Integer mcuCount) {
setMcuCount(mcuCount);
return this;
}
/**
*
* The minimum number of workers allocated to the connector.
*
*
* @param minWorkerCount
* The minimum number of workers allocated to the connector.
*/
public void setMinWorkerCount(Integer minWorkerCount) {
this.minWorkerCount = minWorkerCount;
}
/**
*
* The minimum number of workers allocated to the connector.
*
*
* @return The minimum number of workers allocated to the connector.
*/
public Integer getMinWorkerCount() {
return this.minWorkerCount;
}
/**
*
* The minimum number of workers allocated to the connector.
*
*
* @param minWorkerCount
* The minimum number of workers allocated to the connector.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AutoScaling withMinWorkerCount(Integer minWorkerCount) {
setMinWorkerCount(minWorkerCount);
return this;
}
/**
*
* The sacle-in policy for the connector.
*
*
* @param scaleInPolicy
* The sacle-in policy for the connector.
*/
public void setScaleInPolicy(ScaleInPolicy scaleInPolicy) {
this.scaleInPolicy = scaleInPolicy;
}
/**
*
* The sacle-in policy for the connector.
*
*
* @return The sacle-in policy for the connector.
*/
public ScaleInPolicy getScaleInPolicy() {
return this.scaleInPolicy;
}
/**
*
* The sacle-in policy for the connector.
*
*
* @param scaleInPolicy
* The sacle-in policy for the connector.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AutoScaling withScaleInPolicy(ScaleInPolicy scaleInPolicy) {
setScaleInPolicy(scaleInPolicy);
return this;
}
/**
*
* The sacle-out policy for the connector.
*
*
* @param scaleOutPolicy
* The sacle-out policy for the connector.
*/
public void setScaleOutPolicy(ScaleOutPolicy scaleOutPolicy) {
this.scaleOutPolicy = scaleOutPolicy;
}
/**
*
* The sacle-out policy for the connector.
*
*
* @return The sacle-out policy for the connector.
*/
public ScaleOutPolicy getScaleOutPolicy() {
return this.scaleOutPolicy;
}
/**
*
* The sacle-out policy for the connector.
*
*
* @param scaleOutPolicy
* The sacle-out policy for the connector.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AutoScaling withScaleOutPolicy(ScaleOutPolicy scaleOutPolicy) {
setScaleOutPolicy(scaleOutPolicy);
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 (getMaxWorkerCount() != null)
sb.append("MaxWorkerCount: ").append(getMaxWorkerCount()).append(",");
if (getMcuCount() != null)
sb.append("McuCount: ").append(getMcuCount()).append(",");
if (getMinWorkerCount() != null)
sb.append("MinWorkerCount: ").append(getMinWorkerCount()).append(",");
if (getScaleInPolicy() != null)
sb.append("ScaleInPolicy: ").append(getScaleInPolicy()).append(",");
if (getScaleOutPolicy() != null)
sb.append("ScaleOutPolicy: ").append(getScaleOutPolicy());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof AutoScaling == false)
return false;
AutoScaling other = (AutoScaling) obj;
if (other.getMaxWorkerCount() == null ^ this.getMaxWorkerCount() == null)
return false;
if (other.getMaxWorkerCount() != null && other.getMaxWorkerCount().equals(this.getMaxWorkerCount()) == false)
return false;
if (other.getMcuCount() == null ^ this.getMcuCount() == null)
return false;
if (other.getMcuCount() != null && other.getMcuCount().equals(this.getMcuCount()) == false)
return false;
if (other.getMinWorkerCount() == null ^ this.getMinWorkerCount() == null)
return false;
if (other.getMinWorkerCount() != null && other.getMinWorkerCount().equals(this.getMinWorkerCount()) == false)
return false;
if (other.getScaleInPolicy() == null ^ this.getScaleInPolicy() == null)
return false;
if (other.getScaleInPolicy() != null && other.getScaleInPolicy().equals(this.getScaleInPolicy()) == false)
return false;
if (other.getScaleOutPolicy() == null ^ this.getScaleOutPolicy() == null)
return false;
if (other.getScaleOutPolicy() != null && other.getScaleOutPolicy().equals(this.getScaleOutPolicy()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getMaxWorkerCount() == null) ? 0 : getMaxWorkerCount().hashCode());
hashCode = prime * hashCode + ((getMcuCount() == null) ? 0 : getMcuCount().hashCode());
hashCode = prime * hashCode + ((getMinWorkerCount() == null) ? 0 : getMinWorkerCount().hashCode());
hashCode = prime * hashCode + ((getScaleInPolicy() == null) ? 0 : getScaleInPolicy().hashCode());
hashCode = prime * hashCode + ((getScaleOutPolicy() == null) ? 0 : getScaleOutPolicy().hashCode());
return hashCode;
}
@Override
public AutoScaling clone() {
try {
return (AutoScaling) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.kafkaconnect.model.transform.AutoScalingMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}