Class Incident
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.security.models.Incident
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Incident.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Alerts.The Assigned To.The Classification.The Comments.The Created Date Time.The Custom Tags.The Determination.The Display Name.The Incident Web Url.The Last Update Date Time.The Redirect Incident Id.The Severity.The Status.The Tenant Id. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
assignedTo
@SerializedName(value="assignedTo", alternate="AssignedTo") @Expose @Nullable public String assignedToThe Assigned To. Owner of the incident, or null if no owner is assigned. Free editable text. -
classification
@SerializedName(value="classification", alternate="Classification") @Expose @Nullable public AlertClassification classificationThe Classification. The specification for the incident. Possible values are: unknown, falsePositive, truePositive, informationalExpectedActivity, unknownFutureValue. -
comments
@SerializedName(value="comments", alternate="Comments") @Expose @Nullable public List<AlertComment> commentsThe Comments. Array of comments created by the Security Operations (SecOps) team when the incident is managed. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. Time when the incident was first created. -
customTags
@SerializedName(value="customTags", alternate="CustomTags") @Expose @Nullable public List<String> customTagsThe Custom Tags. Array of custom tags associated with an incident. -
determination
@SerializedName(value="determination", alternate="Determination") @Expose @Nullable public AlertDetermination determinationThe Determination. Specifies the determination of the incident. Possible values are: unknown, apt, malware, securityPersonnel, securityTesting, unwantedSoftware, other, multiStagedAttack, compromisedUser, phishing, maliciousUserActivity, clean, insufficientData, confirmedUserActivity, lineOfBusinessApplication, unknownFutureValue. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The incident name. -
incidentWebUrl
@SerializedName(value="incidentWebUrl", alternate="IncidentWebUrl") @Expose @Nullable public String incidentWebUrlThe Incident Web Url. The URL for the incident page in the Microsoft 365 Defender portal. -
lastUpdateDateTime
@SerializedName(value="lastUpdateDateTime", alternate="LastUpdateDateTime") @Expose @Nullable public OffsetDateTime lastUpdateDateTimeThe Last Update Date Time. Time when the incident was last updated. -
redirectIncidentId
@SerializedName(value="redirectIncidentId", alternate="RedirectIncidentId") @Expose @Nullable public String redirectIncidentIdThe Redirect Incident Id. Only populated in case an incident is grouped together with another incident, as part of the logic that processes incidents. In such a case, the status property is redirected. -
severity
@SerializedName(value="severity", alternate="Severity") @Expose @Nullable public AlertSeverity severityThe Severity. Indicates the possible impact on assets. The higher the severity, the bigger the impact. Typically higher severity items require the most immediate attention. Possible values are: unknown, informational, low, medium, high, unknownFutureValue. -
status
The Status. The status of the incident. Possible values are: active, resolved, inProgress, redirected, unknownFutureValue, and awaitingAction. -
tenantId
The Tenant Id. The Azure Active Directory tenant in which the alert was created. -
alerts
The Alerts. The list of related alerts. Supports $expand.
-
-
Constructor Details
-
Incident
public Incident()
-
-
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:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-