Class GetOperationResponse
- java.lang.Object
-
- com.cloudera.cdp.client.BaseResponse
-
- com.cloudera.cdp.client.CdpResponse
-
- com.cloudera.cdp.environments.model.GetOperationResponse
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-12-01T13:59:41.311-08:00") public class GetOperationResponse extends CdpResponse
Response object for tracking the latest (current/last) operation on the environment resource.
-
-
Field Summary
-
Fields inherited from class com.cloudera.cdp.client.CdpResponse
ALTUS_HEADER_REQUESTID, CDP_HEADER_REQUESTID
-
-
Constructor Summary
Constructors Constructor Description GetOperationResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getOperationId()
Getter for operationId.String
getOperationStatus()
Getter for operationStatus.String
getOperationType()
Getter for operationType.Integer
getProgress()
Getter for progress.int
hashCode()
void
setOperationId(String operationId)
Setter for operationId.void
setOperationStatus(String operationStatus)
Setter for operationStatus.void
setOperationType(String operationType)
Setter for operationType.void
setProgress(Integer progress)
Setter for progress.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
-
getOperationId
public String getOperationId()
Getter for operationId. Identifier of the operation.
-
setOperationId
public void setOperationId(String operationId)
Setter for operationId. Identifier of the operation.
-
getOperationType
public String getOperationType()
Getter for operationType. Type of the operation.
-
setOperationType
public void setOperationType(String operationType)
Setter for operationType. Type of the operation.
-
getOperationStatus
public String getOperationStatus()
Getter for operationStatus. Status of the operation.
-
setOperationStatus
public void setOperationStatus(String operationStatus)
Setter for operationStatus. Status of the operation.
-
getProgress
public Integer getProgress()
Getter for progress. Progress percentage of the operation.
-
setProgress
public void setProgress(Integer progress)
Setter for progress. Progress percentage of the operation.
-
-