Package com.cloudera.cdp.datahub.model
Class DeleteInstancesRequest
- java.lang.Object
-
- com.cloudera.cdp.datahub.model.DeleteInstancesRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-06-01T14:27:19.310-07:00") public class DeleteInstancesRequest extends Object
Request object for deleting multiple instance from a cluster
-
-
Constructor Summary
Constructors Constructor Description DeleteInstancesRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getClusterName()
Getter for clusterName.Boolean
getForce()
Getter for force.List<String>
getInstanceIds()
Getter for instanceIds.int
hashCode()
void
setClusterName(String clusterName)
Setter for clusterName.void
setForce(Boolean force)
Setter for force.void
setInstanceIds(List<String> instanceIds)
Setter for instanceIds.String
toString()
-
-
-
Method Detail
-
getClusterName
public String getClusterName()
Getter for clusterName. The name or CRN of the cluster for which instances are to be deleted.
-
setClusterName
public void setClusterName(String clusterName)
Setter for clusterName. The name or CRN of the cluster for which instances are to be deleted.
-
getInstanceIds
public List<String> getInstanceIds()
Getter for instanceIds. The instanceIds to be deleted from the cluster.
-
setInstanceIds
public void setInstanceIds(List<String> instanceIds)
Setter for instanceIds. The instanceIds to be deleted from the cluster.
-
getForce
public Boolean getForce()
Getter for force. Whether the termination would be forced or not. If it is true, the termination would not be stopped by other - usually blocking - circumstances. Defaults to false.
-
setForce
public void setForce(Boolean force)
Setter for force. Whether the termination would be forced or not. If it is true, the termination would not be stopped by other - usually blocking - circumstances. Defaults to false.
-
-