Package com.cloudera.cdp.audit.model
Class ArchiveBatch
- java.lang.Object
-
- com.cloudera.cdp.audit.model.ArchiveBatch
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:53.780-07:00") public class ArchiveBatch extends Object
Information about a batch of audit events that were archived.
-
-
Constructor Summary
Constructors Constructor Description ArchiveBatch()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getAccountId()
Getter for accountId.String
getArchiveId()
Getter for archiveId.Long
getArchiveTimestamp()
Getter for archiveTimestamp.Long
getEventCount()
Getter for eventCount.int
hashCode()
void
setAccountId(String accountId)
Setter for accountId.void
setArchiveId(String archiveId)
Setter for archiveId.void
setArchiveTimestamp(Long archiveTimestamp)
Setter for archiveTimestamp.void
setEventCount(Long eventCount)
Setter for eventCount.String
toString()
-
-
-
Method Detail
-
getAccountId
public String getAccountId()
Getter for accountId. The account ID for which events were archived.
-
setAccountId
public void setAccountId(String accountId)
Setter for accountId. The account ID for which events were archived.
-
getEventCount
public Long getEventCount()
Getter for eventCount. The number of events archived. A negative number indicates that the count is not available.
-
setEventCount
public void setEventCount(Long eventCount)
Setter for eventCount. The number of events archived. A negative number indicates that the count is not available.
-
getArchiveId
public String getArchiveId()
Getter for archiveId. The archive ID of the batch.
-
setArchiveId
public void setArchiveId(String archiveId)
Setter for archiveId. The archive ID of the batch.
-
getArchiveTimestamp
public Long getArchiveTimestamp()
Getter for archiveTimestamp. The archive timestamp of the batch.
-
setArchiveTimestamp
public void setArchiveTimestamp(Long archiveTimestamp)
Setter for archiveTimestamp. The archive timestamp of the batch.
-
-