Class SetPasswordResponse
- java.lang.Object
-
- com.cloudera.cdp.client.BaseResponse
-
- com.cloudera.cdp.client.CdpResponse
-
- com.cloudera.cdp.environments.model.SetPasswordResponse
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:18.529-07:00") public class SetPasswordResponse extends CdpResponse
Response object for set password request. (deprecated)
-
-
Field Summary
-
Fields inherited from class com.cloudera.cdp.client.CdpResponse
ALTUS_HEADER_REQUESTID, CDP_HEADER_REQUESTID
-
-
Constructor Summary
Constructors Constructor Description SetPasswordResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getEndTime()
Getter for endTime.String
getError()
Getter for error.List<SyncOperationDetails>
getFailure()
Getter for failure.String
getOperationId()
Getter for operationId.String
getOperationType()
Getter for operationType.String
getStartTime()
Getter for startTime.String
getStatus()
Getter for status.List<SyncOperationDetails>
getSuccess()
Getter for success.int
hashCode()
void
setEndTime(String endTime)
Setter for endTime.void
setError(String error)
Setter for error.void
setFailure(List<SyncOperationDetails> failure)
Setter for failure.void
setOperationId(String operationId)
Setter for operationId.void
setOperationType(String operationType)
Setter for operationType.void
setStartTime(String startTime)
Setter for startTime.void
setStatus(String status)
Setter for status.void
setSuccess(List<SyncOperationDetails> success)
Setter for success.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. UUID of the request for this operation. This Id can be used for geting status on the operation.
-
setOperationId
public void setOperationId(String operationId)
Setter for operationId. UUID of the request for this operation. This Id can be used for geting status on the operation.
-
getOperationType
public String getOperationType()
Getter for operationType. Operation type, set password or user sync
-
setOperationType
public void setOperationType(String operationType)
Setter for operationType. Operation type, set password or user sync
-
getStatus
public String getStatus()
Getter for status. Status of this operation. Status can be one of these values (REQUESTED, RUNNING, COMPLETED, FAILED, REJECTED, TIMEDOUT)
-
setStatus
public void setStatus(String status)
Setter for status. Status of this operation. Status can be one of these values (REQUESTED, RUNNING, COMPLETED, FAILED, REJECTED, TIMEDOUT)
-
getSuccess
public List<SyncOperationDetails> getSuccess()
Getter for success. List of sync operation details for all succeeded environments.
-
setSuccess
public void setSuccess(List<SyncOperationDetails> success)
Setter for success. List of sync operation details for all succeeded environments.
-
getFailure
public List<SyncOperationDetails> getFailure()
Getter for failure. List of sync operation details for all failed envs.
-
setFailure
public void setFailure(List<SyncOperationDetails> failure)
Setter for failure. List of sync operation details for all failed envs.
-
getError
public String getError()
Getter for error. If there is any error associated.
-
setError
public void setError(String error)
Setter for error. If there is any error associated.
-
getStartTime
public String getStartTime()
Getter for startTime. Sync operation start timestamp.
-
setStartTime
public void setStartTime(String startTime)
Setter for startTime. Sync operation start timestamp.
-
getEndTime
public String getEndTime()
Getter for endTime. Sync operation end timestamp.
-
setEndTime
public void setEndTime(String endTime)
Setter for endTime. Sync operation end timestamp.
-
-