simulationAutomationRun 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 a run of an attack simulation automation on a tenant.

Methods

Method Return type Description
List runs simulationAutomationRun collection Get a list of runs of attack simulation automation.

Properties

Property Type Description
endDateTime DateTimeOffset Date and time when the run ends in an attack simulation automation.
id String Unique identifier for the run of an attack simulation automation.
simulationId String Unique identifier for the attack simulation campaign initiated in the attack simulation automation run.
startDateTime DateTimeOffset Date and time when the run starts in an attack simulation automation.
status simulationAutomationRunStatus Status of the run of an attack simulation automation. The possible values are: unknown, running, succeeded, failed, skipped, unknownFutureValue.

simulationAutomationRunStatus values

Member Description
unknown The status of a run of a simulation automation is not defined.
running The run of a simulation automation is running.
succeeded The run of a simulation automation has succeeded.
failed The run of a simulation automation has failed.
skipped The run of a simulation automation has skipped.
unknownFutureValue Evolvable enumeration sentinel value. Do not use.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.simulationAutomationRun",
  "endDateTime": "String (timestamp)",
  "id": "String (identifier)",
  "simulationId": "String",
  "startDateTime": "String (timestamp)",
  "status": "String"
}