Skip to content

Latest commit

 

History

History
63 lines (57 loc) · 2.52 KB

File metadata and controls

63 lines (57 loc) · 2.52 KB
title userSimulationDetails resource type
description Represents a user of a tenant and their online actions in an attack simulation and training campaign.
author stuartcl
ms.localizationpriority medium
ms.subservice security
doc_type resourcePageType
ms.date 07/22/2024

userSimulationDetails resource type

Namespace: microsoft.graph

Represents a user of a tenant and their online actions in an attack simulation and training campaign.

Properties

Property Type Description
assignedTrainingsCount Int32 Number of trainings assigned to a user in an attack simulation and training campaign.
completedTrainingsCount Int32 Number of trainings completed by a user in an attack simulation and training campaign.
compromisedDateTime DateTimeOffset Date and time of the compromising online action by a user in an attack simulation and training campaign.
inProgressTrainingsCount Int32 Number of trainings in progress by a user in an attack simulation and training campaign.
isCompromised Boolean Indicates whether a user was compromised in an attack simulation and training campaign.
reportedPhishDateTime DateTimeOffset Date and time when a user reported the delivered payload as phishing in the attack simulation and training campaign.
simulationEvents userSimulationEventInfo collection List of simulation events of a user in the attack simulation and training campaign.
simulationUser attackSimulationUser User in an attack simulation and training campaign.
trainingEvents userTrainingEventInfo collection List of training events of a user in the attack simulation and training campaign.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.userSimulationDetails",
  "assignedTrainingsCount": "Int32",
  "completedTrainingsCount": "Int32",
  "compromisedDateTime": "String (timestamp)",
  "inProgressTrainingsCount": "Int32",
  "isCompromised": "Boolean",
  "reportedPhishDateTime": "String (timestamp)",
  "simulationEvents": [
    {
      "@odata.type": "microsoft.graph.userSimulationEventInfo"
    }
  ],
  "simulationUser": {
    "@odata.type": "microsoft.graph.attackSimulationUser"
  },
  "trainingEvents": [
    {
      "@odata.type": "microsoft.graph.userTrainingEventInfo"
    }
  ]
}