Class RepairFreeipaResponse
- java.lang.Object
-
- com.cloudera.cdp.client.BaseResponse
-
- com.cloudera.cdp.client.CdpResponse
-
- com.cloudera.cdp.environments.model.RepairFreeipaResponse
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-12-01T13:59:41.311-08:00") public class RepairFreeipaResponse extends CdpResponse
Response object for an FreeIPA repair request.
-
-
Field Summary
-
Fields inherited from class com.cloudera.cdp.client.CdpResponse
ALTUS_HEADER_REQUESTID, CDP_HEADER_REQUESTID
-
-
Constructor Summary
Constructors Constructor Description RepairFreeipaResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
ZonedDateTime
getEndDate()
Getter for endDate.String
getError()
Getter for error.List<RepairOperationDetails>
getFailureOperationDetails()
Getter for failureOperationDetails.String
getOperationId()
Getter for operationId.ZonedDateTime
getStartDate()
Getter for startDate.String
getStatus()
Getter for status.List<RepairOperationDetails>
getSuccessfulOperationDetails()
Getter for successfulOperationDetails.int
hashCode()
void
setEndDate(ZonedDateTime endDate)
Setter for endDate.void
setError(String error)
Setter for error.void
setFailureOperationDetails(List<RepairOperationDetails> failureOperationDetails)
Setter for failureOperationDetails.void
setOperationId(String operationId)
Setter for operationId.void
setStartDate(ZonedDateTime startDate)
Setter for startDate.void
setStatus(String status)
Setter for status.void
setSuccessfulOperationDetails(List<RepairOperationDetails> successfulOperationDetails)
Setter for successfulOperationDetails.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. Operation ID 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. Operation ID of the request for this operation. This ID can be used for geting status on the operation.
-
getStatus
public String getStatus()
Getter for status. Status of this operation.
-
setStatus
public void setStatus(String status)
Setter for status. Status of this operation.
-
getSuccessfulOperationDetails
public List<RepairOperationDetails> getSuccessfulOperationDetails()
Getter for successfulOperationDetails. List of operation details for all successes. If the repair is only partially successful both successful and failure operation details will be populated.
-
setSuccessfulOperationDetails
public void setSuccessfulOperationDetails(List<RepairOperationDetails> successfulOperationDetails)
Setter for successfulOperationDetails. List of operation details for all successes. If the repair is only partially successful both successful and failure operation details will be populated.
-
getFailureOperationDetails
public List<RepairOperationDetails> getFailureOperationDetails()
Getter for failureOperationDetails. List of operation details for failures. If the repair is only partially successful both successful and failure operation details will be populated.
-
setFailureOperationDetails
public void setFailureOperationDetails(List<RepairOperationDetails> failureOperationDetails)
Setter for failureOperationDetails. List of operation details for failures. If the repair is only partially successful both successful and failure operation details will be populated.
-
getError
public String getError()
Getter for error. If there is any error associated. The error will be populated on any error and it may be populated when the operation failure details are empty. The error will typically contain the high level information such as the assocated repair failure phase.
-
setError
public void setError(String error)
Setter for error. If there is any error associated. The error will be populated on any error and it may be populated when the operation failure details are empty. The error will typically contain the high level information such as the assocated repair failure phase.
-
getStartDate
public ZonedDateTime getStartDate()
Getter for startDate. Date when the operation started.
-
setStartDate
public void setStartDate(ZonedDateTime startDate)
Setter for startDate. Date when the operation started.
-
getEndDate
public ZonedDateTime getEndDate()
Getter for endDate. Date when the operation ended. Omitted if operation has not ended.
-
setEndDate
public void setEndDate(ZonedDateTime endDate)
Setter for endDate. Date when the operation ended. Omitted if operation has not ended.
-
-