Package com.cloudera.cdp.datalake.model
Class CancelBackupRequest
- java.lang.Object
-
- com.cloudera.cdp.datalake.model.CancelBackupRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:18.056-07:00") public class CancelBackupRequest extends Object
The request to cancel a backup operation.
-
-
Constructor Summary
Constructors Constructor Description CancelBackupRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getBackupId()
Getter for backupId.Boolean
getForce()
Getter for force.int
hashCode()
void
setBackupId(String backupId)
Setter for backupId.void
setForce(Boolean force)
Setter for force.String
toString()
-
-
-
Method Detail
-
getBackupId
public String getBackupId()
Getter for backupId. Backup-id that identifies the backup to be cancelled.
-
setBackupId
public void setBackupId(String backupId)
Setter for backupId. Backup-id that identifies the backup to be cancelled.
-
getForce
public Boolean getForce()
Getter for force. Will mark all unfinished operations as cancelled without waiting for their result and mark backup operation as finished (cancelled, successful or failed) immediately.
-
setForce
public void setForce(Boolean force)
Setter for force. Will mark all unfinished operations as cancelled without waiting for their result and mark backup operation as finished (cancelled, successful or failed) immediately.
-
-