Package com.cloudera.cdp.audit.model
Class GetArchivingStatusResponse
- java.lang.Object
-
- com.cloudera.cdp.client.BaseResponse
-
- com.cloudera.cdp.client.CdpResponse
-
- com.cloudera.cdp.audit.model.GetArchivingStatusResponse
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:19.172-07:00") public class GetArchivingStatusResponse extends CdpResponse
Information about a current archive process.
-
-
Field Summary
-
Fields inherited from class com.cloudera.cdp.client.CdpResponse
ALTUS_HEADER_REQUESTID, CDP_HEADER_REQUESTID
-
-
Constructor Summary
Constructors Constructor Description GetArchivingStatusResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
List<ArchiveBatch>
getEventBatches()
Getter for eventBatches.Long
getEventCount()
Getter for eventCount.String
getStatus()
Getter for status.int
hashCode()
void
setEventBatches(List<ArchiveBatch> eventBatches)
Setter for eventBatches.void
setEventCount(Long eventCount)
Setter for eventCount.void
setStatus(String status)
Setter for status.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
-
getStatus
public String getStatus()
Getter for status. The archive status.
-
setStatus
public void setStatus(String status)
Setter for status. The archive status.
-
getEventCount
public Long getEventCount()
Getter for eventCount. The number of events archived.
-
setEventCount
public void setEventCount(Long eventCount)
Setter for eventCount. The number of events archived.
-
getEventBatches
public List<ArchiveBatch> getEventBatches()
Getter for eventBatches. The details about the batches of events archived.
-
setEventBatches
public void setEventBatches(List<ArchiveBatch> eventBatches)
Setter for eventBatches. The details about the batches of events archived.
-
-