Package com.microsoft.graph.models
Class AuditEvent
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.AuditEvent
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Audit Event.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Activity.The Activity Date Time.The Activity Operation Type.The Activity Result.The Activity Type.The Actor.The Category.The Component Name.The Correlation Id.The Display Name.The Resources. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
activity
The Activity. Friendly name of the activity. -
activityDateTime
@SerializedName(value="activityDateTime", alternate="ActivityDateTime") @Expose @Nullable public OffsetDateTime activityDateTimeThe Activity Date Time. The date time in UTC when the activity was performed. -
activityOperationType
@SerializedName(value="activityOperationType", alternate="ActivityOperationType") @Expose @Nullable public String activityOperationTypeThe Activity Operation Type. The HTTP operation type of the activity. -
activityResult
@SerializedName(value="activityResult", alternate="ActivityResult") @Expose @Nullable public String activityResultThe Activity Result. The result of the activity. -
activityType
@SerializedName(value="activityType", alternate="ActivityType") @Expose @Nullable public String activityTypeThe Activity Type. The type of activity that was being performed. -
actor
The Actor. AAD user and application that are associated with the audit event. -
category
The Category. Audit category. -
componentName
@SerializedName(value="componentName", alternate="ComponentName") @Expose @Nullable public String componentNameThe Component Name. Component name. -
correlationId
@SerializedName(value="correlationId", alternate="CorrelationId") @Expose @Nullable public UUID correlationIdThe Correlation Id. The client request Id that is used to correlate activity within the system. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. Event display name. -
resources
@SerializedName(value="resources", alternate="Resources") @Expose @Nullable public List<AuditResource> resourcesThe Resources. Resources being modified.
-
-
Constructor Details
-
AuditEvent
public AuditEvent()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-