simulationReportOverview resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents an overview report of an attack simulation and training campaign.
Properties
Property | Type | Description |
---|---|---|
recommendedActions | recommendedAction collection | List of recommended actions for a tenant to improve its security posture based on the attack simulation and training campaign attack type. |
resolvedTargetsCount | Int32 | Number of valid users in the attack simulation and training campaign. |
simulationEventsContent | simulationEventsContent | Summary of simulation events in the attack simulation and training campaign. |
trainingEventsContent | trainingEventsContent | Summary of assigned trainings in the attack simulation and training campaign. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.simulationReportOverview",
"recommendedActions": [
{
"@odata.type": "microsoft.graph.recommendedAction"
}
],
"resolvedTargetsCount": "Int32",
"simulationEventsContent": {
"@odata.type": "microsoft.graph.simulationEventsContent"
},
"trainingEventsContent": {
"@odata.type": "microsoft.graph.trainingEventsContent"
}
}