Class IdBrokerSyncStatus
- java.lang.Object
-
- com.cloudera.cdp.environments.model.IdBrokerSyncStatus
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:18.529-07:00") public class IdBrokerSyncStatus extends Object
Status of an ID Broker mappings sync operation.
-
-
Constructor Summary
Constructors Constructor Description IdBrokerSyncStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
ZonedDateTime
getEndDate()
Getter for endDate.String
getErrorDetail()
Getter for errorDetail.ZonedDateTime
getStartDate()
Getter for startDate.String
getStatus()
Getter for status.int
hashCode()
void
setEndDate(ZonedDateTime endDate)
Setter for endDate.void
setErrorDetail(String errorDetail)
Setter for errorDetail.void
setStartDate(ZonedDateTime startDate)
Setter for startDate.void
setStatus(String status)
Setter for status.String
toString()
-
-
-
Method Detail
-
getStatus
public String getStatus()
Getter for status. The mappings sync summary status.
-
setStatus
public void setStatus(String status)
Setter for status. The mappings sync summary status.
-
getStartDate
public ZonedDateTime getStartDate()
Getter for startDate. The date when the mappings sync started executing. Omitted if status is NEVER_RUN.
-
setStartDate
public void setStartDate(ZonedDateTime startDate)
Setter for startDate. The date when the mappings sync started executing. Omitted if status is NEVER_RUN.
-
getEndDate
public ZonedDateTime getEndDate()
Getter for endDate. The date when the mappings sync completed or was terminated. Omitted if status is NEVER_RUN or RUNNING.
-
setEndDate
public void setEndDate(ZonedDateTime endDate)
Setter for endDate. The date when the mappings sync completed or was terminated. Omitted if status is NEVER_RUN or RUNNING.
-
getErrorDetail
public String getErrorDetail()
Getter for errorDetail. The detail of the error. Omitted if status is not FAILED.
-
setErrorDetail
public void setErrorDetail(String errorDetail)
Setter for errorDetail. The detail of the error. Omitted if status is not FAILED.
-
-