Skip to content

Latest commit

 

History

History
69 lines (57 loc) · 2.93 KB

security-processevidence.md

File metadata and controls

69 lines (57 loc) · 2.93 KB
title description author ms.localizationpriority ms.subservice doc_type
processEvidence resource type
Represents a process that is reported in the alert as evidence.
BenAlfasi
medium
security
resourcePageType

processEvidence resource type

Namespace: microsoft.graph.security

[!INCLUDE beta-disclaimer]

Represents a process that is reported in the alert as evidence.

Inherits from alertEvidence.

Properties

Property Type Description
detectionStatus microsoft.graph.security.detectionStatus The status of the detection. The possible values are: detected, blocked, prevented, unknownFutureValue.
imageFile microsoft.graph.security.fileDetails Image file details.
mdeDeviceId String A unique identifier assigned to a device by Microsoft Defender for Endpoint.
parentProcessCreationDateTime DateTimeOffset Date and time when the parent of the process was created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
parentProcessId Int64 Process ID (PID) of the parent process that spawned the process.
parentProcessImageFile microsoft.graph.security.fileDetails Parent process image file details.
processCommandLine String Command line used to create the new process.
processCreationDateTime DateTimeOffset Date and time when the process was created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
processId Int64 Process ID (PID) of the newly created process.
userAccount microsoft.graph.security.userAccount User details of the user that ran the process.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.security.processEvidence",
  "createdDateTime": "String (timestamp)",
  "detectionStatus": "String",
  "imageFile": {"@odata.type": "microsoft.graph.security.fileDetails"},
  "mdeDeviceId": "String",
  "parentProcessCreationDateTime": "String (timestamp)",
  "parentProcessId": "Int64",
  "parentProcessImageFile": {"@odata.type": "microsoft.graph.security.fileDetails"},
  "processCommandLine": "String",
  "processCreationDateTime": "String (timestamp)",
  "processId": "Int64",
  "remediationStatus": "String",
  "remediationStatusDetails": "String",
  "roles": ["String"],
  "tags": ["String"],
  "userAccount": {"@odata.type": "microsoft.graph.security.userAccount"},
  "verdict": "String"
}