Package com.cloudera.cdp.dw.model
Class DeleteClusterRequest
- java.lang.Object
-
- com.cloudera.cdp.dw.model.DeleteClusterRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-12-01T13:59:39.820-08:00") public class DeleteClusterRequest extends Object
Request object for the deleteCluster method.
-
-
Constructor Summary
Constructors Constructor Description DeleteClusterRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getClusterId()
Getter for clusterId.Boolean
getForce()
Getter for force.int
hashCode()
void
setClusterId(String clusterId)
Setter for clusterId.void
setForce(Boolean force)
Setter for force.String
toString()
-
-
-
Method Detail
-
getClusterId
public String getClusterId()
Getter for clusterId. The ID of the cluster to delete.
-
setClusterId
public void setClusterId(String clusterId)
Setter for clusterId. The ID of the cluster to delete.
-
getForce
public Boolean getForce()
Getter for force. Force delete means CDW will delete the cluster even if there are attached DB Catalogs and Virtual Warehouses. All managed data will be lost and will not be recoverable. Force delete attempts all steps of the deletion even if previous steps have failed. NOTICE: Be aware that a Force delete may not remove all resources due to cloud provider constraints. Should this happen, it is responsibility of the user to ensure the impacted resources are deleted on the cloud provider.
-
setForce
public void setForce(Boolean force)
Setter for force. Force delete means CDW will delete the cluster even if there are attached DB Catalogs and Virtual Warehouses. All managed data will be lost and will not be recoverable. Force delete attempts all steps of the deletion even if previous steps have failed. NOTICE: Be aware that a Force delete may not remove all resources due to cloud provider constraints. Should this happen, it is responsibility of the user to ensure the impacted resources are deleted on the cloud provider.
-
-