Package com.cloudera.cdp.datalake.model
Class ScaleHorizontallyRequest
- java.lang.Object
-
- com.cloudera.cdp.datalake.model.ScaleHorizontallyRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2024-04-30T10:56:33.904-07:00") public class ScaleHorizontallyRequest extends Object
Data Lake horizontal scaling request.
-
-
Constructor Summary
Constructors Constructor Description ScaleHorizontallyRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getDatalakeName()
Getter for datalakeName.Integer
getInstanceGroupDesiredCount()
Getter for instanceGroupDesiredCount.String
getInstanceGroupName()
Getter for instanceGroupName.int
hashCode()
void
setDatalakeName(String datalakeName)
Setter for datalakeName.void
setInstanceGroupDesiredCount(Integer instanceGroupDesiredCount)
Setter for instanceGroupDesiredCount.void
setInstanceGroupName(String instanceGroupName)
Setter for instanceGroupName.String
toString()
-
-
-
Method Detail
-
getDatalakeName
public String getDatalakeName()
Getter for datalakeName. The name of the Data Lake
-
setDatalakeName
public void setDatalakeName(String datalakeName)
Setter for datalakeName. The name of the Data Lake
-
getInstanceGroupName
public String getInstanceGroupName()
Getter for instanceGroupName. The target host group name to be scaled.
-
setInstanceGroupName
public void setInstanceGroupName(String instanceGroupName)
Setter for instanceGroupName. The target host group name to be scaled.
-
getInstanceGroupDesiredCount
public Integer getInstanceGroupDesiredCount()
Getter for instanceGroupDesiredCount. The target number of the scaling operation. If the desired count is less than the actual node count the scaling action will be a downscale operation.
-
setInstanceGroupDesiredCount
public void setInstanceGroupDesiredCount(Integer instanceGroupDesiredCount)
Setter for instanceGroupDesiredCount. The target number of the scaling operation. If the desired count is less than the actual node count the scaling action will be a downscale operation.
-
-