Package com.cloudera.cdp.ml.model
Class AuditEvent
- java.lang.Object
-
- com.cloudera.cdp.ml.model.AuditEvent
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:17.886-07:00") public class AuditEvent extends Object
Audit event descibes an performed or performing in a given workspace.
-
-
Constructor Summary
Constructors Constructor Description AuditEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getAction()
Getter for action.ZonedDateTime
getCreatedDate()
Getter for createdDate.String
getRequestID()
Getter for requestID.String
getUserCrn()
Getter for userCrn.String
getWorkspaceCrn()
Getter for workspaceCrn.int
hashCode()
void
setAction(String action)
Setter for action.void
setCreatedDate(ZonedDateTime createdDate)
Setter for createdDate.void
setRequestID(String requestID)
Setter for requestID.void
setUserCrn(String userCrn)
Setter for userCrn.void
setWorkspaceCrn(String workspaceCrn)
Setter for workspaceCrn.String
toString()
-
-
-
Method Detail
-
getWorkspaceCrn
public String getWorkspaceCrn()
Getter for workspaceCrn. Workspace crn where the event observed.
-
setWorkspaceCrn
public void setWorkspaceCrn(String workspaceCrn)
Setter for workspaceCrn. Workspace crn where the event observed.
-
getUserCrn
public String getUserCrn()
Getter for userCrn. UserCrn to track which user has caused the event.
-
setUserCrn
public void setUserCrn(String userCrn)
Setter for userCrn. UserCrn to track which user has caused the event.
-
getRequestID
public String getRequestID()
Getter for requestID. Unique request ID to keep track of event.
-
setRequestID
public void setRequestID(String requestID)
Setter for requestID. Unique request ID to keep track of event.
-
getAction
public String getAction()
Getter for action. Action the user has generated.
-
setAction
public void setAction(String action)
Setter for action. Action the user has generated.
-
getCreatedDate
public ZonedDateTime getCreatedDate()
Getter for createdDate. Time at creation of event.
-
setCreatedDate
public void setCreatedDate(ZonedDateTime createdDate)
Setter for createdDate. Time at creation of event.
-
-