Package com.cloudera.cdp.ml.model
Class ModifyClusterInstanceGroupRequest
- java.lang.Object
-
- com.cloudera.cdp.ml.model.ModifyClusterInstanceGroupRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:52.511-07:00") public class ModifyClusterInstanceGroupRequest extends Object
Request object for ModifyClusterInstanceGroup.
-
-
Constructor Summary
Constructors Constructor Description ModifyClusterInstanceGroupRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getInstanceGroupName()
Getter for instanceGroupName.String
getInstanceType()
Getter for instanceType.Integer
getMax()
Getter for max.Integer
getMin()
Getter for min.String
getWorkspaceCrn()
Getter for workspaceCrn.int
hashCode()
void
setInstanceGroupName(String instanceGroupName)
Setter for instanceGroupName.void
setInstanceType(String instanceType)
Setter for instanceType.void
setMax(Integer max)
Setter for max.void
setMin(Integer min)
Setter for min.void
setWorkspaceCrn(String workspaceCrn)
Setter for workspaceCrn.String
toString()
-
-
-
Method Detail
-
getWorkspaceCrn
public String getWorkspaceCrn()
Getter for workspaceCrn. The CRN of the workspace cluster to modify.
-
setWorkspaceCrn
public void setWorkspaceCrn(String workspaceCrn)
Setter for workspaceCrn. The CRN of the workspace cluster to modify.
-
getInstanceGroupName
public String getInstanceGroupName()
Getter for instanceGroupName. The name of the instance group of the workspace cluster to modify.
-
setInstanceGroupName
public void setInstanceGroupName(String instanceGroupName)
Setter for instanceGroupName. The name of the instance group of the workspace cluster to modify.
-
getMin
public Integer getMin()
Getter for min. The desired autoscaling min of the workspace cluster instance group.
-
setMin
public void setMin(Integer min)
Setter for min. The desired autoscaling min of the workspace cluster instance group.
-
getMax
public Integer getMax()
Getter for max. The desired autoscaling min of the workspace cluster instance group.
-
setMax
public void setMax(Integer max)
Setter for max. The desired autoscaling min of the workspace cluster instance group.
-
getInstanceType
public String getInstanceType()
Getter for instanceType. The desired instance type of the workspace cluster instance group.
-
setInstanceType
public void setInstanceType(String instanceType)
Setter for instanceType. The desired instance type of the workspace cluster instance group.
-
-