Package com.microsoft.graph.models
Class SimulationAutomationRun
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.SimulationAutomationRun
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class SimulationAutomationRun
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Simulation Automation Run.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe End Date Time.The Simulation Id.The Start Date Time.The Status. -
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
-
endDateTime
@SerializedName(value="endDateTime", alternate="EndDateTime") @Expose @Nullable public OffsetDateTime endDateTimeThe End Date Time. Date and time when the run ends in an attack simulation automation. -
simulationId
@SerializedName(value="simulationId", alternate="SimulationId") @Expose @Nullable public String simulationIdThe Simulation Id. Unique identifier for the attack simulation campaign initiated in the attack simulation automation run. -
startDateTime
@SerializedName(value="startDateTime", alternate="StartDateTime") @Expose @Nullable public OffsetDateTime startDateTimeThe Start Date Time. Date and time when the run starts in an attack simulation automation. -
status
@SerializedName(value="status", alternate="Status") @Expose @Nullable public SimulationAutomationRunStatus statusThe Status. Status of the attack simulation automation run. The possible values are: unknown, running, succeeded, failed, skipped, unknownFutureValue.
-
-
Constructor Details
-
SimulationAutomationRun
public SimulationAutomationRun()
-
-
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
-