Package com.cloudera.cdp.dw.model
Class BackupClusterResponse
- java.lang.Object
-
- com.cloudera.cdp.client.BaseResponse
-
- com.cloudera.cdp.client.CdpResponse
-
- com.cloudera.cdp.dw.model.BackupClusterResponse
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:17.249-07:00") public class BackupClusterResponse extends CdpResponse
Response object for the backupCluster method.
-
-
Field Summary
-
Fields inherited from class com.cloudera.cdp.client.CdpResponse
ALTUS_HEADER_REQUESTID, CDP_HEADER_REQUESTID
-
-
Constructor Summary
Constructors Constructor Description BackupClusterResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getClusterId()
Getter for clusterId.String
getData()
Getter for data.String
getMd5()
Getter for md5.String
getOperationId()
Getter for operationId.ZonedDateTime
getTimestamp()
Getter for timestamp.int
hashCode()
void
setClusterId(String clusterId)
Setter for clusterId.void
setData(String data)
Setter for data.void
setMd5(String md5)
Setter for md5.void
setOperationId(String operationId)
Setter for operationId.void
setTimestamp(ZonedDateTime timestamp)
Setter for timestamp.String
toString()
-
Methods inherited from class com.cloudera.cdp.client.CdpResponse
getRequestId
-
Methods inherited from class com.cloudera.cdp.client.BaseResponse
getHttpCode, getResponseHeaders
-
-
-
-
Method Detail
-
getClusterId
public String getClusterId()
Getter for clusterId. The ID of the cluster.
-
setClusterId
public void setClusterId(String clusterId)
Setter for clusterId. The ID of the cluster.
-
getOperationId
public String getOperationId()
Getter for operationId. The the ID of the backup operation.
-
setOperationId
public void setOperationId(String operationId)
Setter for operationId. The the ID of the backup operation.
-
getTimestamp
public ZonedDateTime getTimestamp()
Getter for timestamp. The date of the creation.
-
setTimestamp
public void setTimestamp(ZonedDateTime timestamp)
Setter for timestamp. The date of the creation.
-
getData
public String getData()
Getter for data. The backup data.
-
setData
public void setData(String data)
Setter for data. The backup data.
-
getMd5
public String getMd5()
Getter for md5. The md5 hash of the encoded data.
-
setMd5
public void setMd5(String md5)
Setter for md5. The md5 hash of the encoded data.
-
-