Package com.cloudera.cdp.ml.model
Class Autoscaling
- java.lang.Object
-
- com.cloudera.cdp.ml.model.Autoscaling
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:17.886-07:00") public class Autoscaling extends Object
Configuration for instance auto scaling.
-
-
Constructor Summary
Constructors Constructor Description Autoscaling()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Boolean
getEnabled()
Getter for enabled.Integer
getMaxInstances()
Getter for maxInstances.Integer
getMinInstances()
Getter for minInstances.int
hashCode()
void
setEnabled(Boolean enabled)
Setter for enabled.void
setMaxInstances(Integer maxInstances)
Setter for maxInstances.void
setMinInstances(Integer minInstances)
Setter for minInstances.String
toString()
-
-
-
Method Detail
-
getMinInstances
public Integer getMinInstances()
Getter for minInstances. The minimum number of instance for auto scaling.
-
setMinInstances
public void setMinInstances(Integer minInstances)
Setter for minInstances. The minimum number of instance for auto scaling.
-
getMaxInstances
public Integer getMaxInstances()
Getter for maxInstances. The maximum number of instance for auto scaling.
-
setMaxInstances
public void setMaxInstances(Integer maxInstances)
Setter for maxInstances. The maximum number of instance for auto scaling.
-
getEnabled
public Boolean getEnabled()
Getter for enabled. The boolean flag to enable the auto scaling.
-
setEnabled
public void setEnabled(Boolean enabled)
Setter for enabled. The boolean flag to enable the auto scaling.
-
-