Package com.cloudera.cdp.datahub.model
Class RepairClusterRequest
- java.lang.Object
-
- com.cloudera.cdp.datahub.model.RepairClusterRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-06-01T14:27:19.310-07:00") public class RepairClusterRequest extends Object
Request object for repair cluster request.
-
-
Constructor Summary
Constructors Constructor Description RepairClusterRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getClusterName()
Getter for clusterName.List<String>
getInstanceGroupNames()
Getter for instanceGroupNames.RepairInstancesRequest
getInstances()
Getter for instances.Boolean
getRemoveOnly()
Getter for removeOnly.int
hashCode()
void
setClusterName(String clusterName)
Setter for clusterName.void
setInstanceGroupNames(List<String> instanceGroupNames)
Setter for instanceGroupNames.void
setInstances(RepairInstancesRequest instances)
Setter for instances.void
setRemoveOnly(Boolean removeOnly)
Setter for removeOnly.String
toString()
-
-
-
Method Detail
-
getClusterName
public String getClusterName()
Getter for clusterName. The name or CRN of the cluster to be repaired.
-
setClusterName
public void setClusterName(String clusterName)
Setter for clusterName. The name or CRN of the cluster to be repaired.
-
getInstanceGroupNames
public List<String> getInstanceGroupNames()
Getter for instanceGroupNames. List of instance groups where the failed instances will be repaired.
-
setInstanceGroupNames
public void setInstanceGroupNames(List<String> instanceGroupNames)
Setter for instanceGroupNames. List of instance groups where the failed instances will be repaired.
-
getInstances
public RepairInstancesRequest getInstances()
Getter for instances. List of instances.
-
setInstances
public void setInstances(RepairInstancesRequest instances)
Setter for instances. List of instances.
-
getRemoveOnly
public Boolean getRemoveOnly()
Getter for removeOnly. If true, the failed instances will only be removed, otherwise the failed instances will be removed and new instances will be started.
-
setRemoveOnly
public void setRemoveOnly(Boolean removeOnly)
Setter for removeOnly. If true, the failed instances will only be removed, otherwise the failed instances will be removed and new instances will be started.
-
-