Package com.microsoft.graph.models
Class SimulationAutomation
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.SimulationAutomation
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class SimulationAutomation
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Simulation Automation.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Created By.The Created Date Time.The Description.The Display Name.The Last Modified By.The Last Modified Date Time.The Last Run Date Time.The Next Run Date Time.The Runs.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
-
createdBy
@SerializedName(value="createdBy", alternate="CreatedBy") @Expose @Nullable public EmailIdentity createdByThe Created By. Identity of the user who created the attack simulation automation. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. Date and time when the attack simulation automation was created. -
description
@SerializedName(value="description", alternate="Description") @Expose @Nullable public String descriptionThe Description. Description of the attack simulation automation. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. Display name of the attack simulation automation. Supports $filter and $orderby. -
lastModifiedBy
@SerializedName(value="lastModifiedBy", alternate="LastModifiedBy") @Expose @Nullable public EmailIdentity lastModifiedByThe Last Modified By. Identity of the user who most recently modified the attack simulation automation. -
lastModifiedDateTime
@SerializedName(value="lastModifiedDateTime", alternate="LastModifiedDateTime") @Expose @Nullable public OffsetDateTime lastModifiedDateTimeThe Last Modified Date Time. Date and time when the attack simulation automation was most recently modified. -
lastRunDateTime
@SerializedName(value="lastRunDateTime", alternate="LastRunDateTime") @Expose @Nullable public OffsetDateTime lastRunDateTimeThe Last Run Date Time. Date and time of the latest run of the attack simulation automation. -
nextRunDateTime
@SerializedName(value="nextRunDateTime", alternate="NextRunDateTime") @Expose @Nullable public OffsetDateTime nextRunDateTimeThe Next Run Date Time. Date and time of the upcoming run of the attack simulation automation. -
status
@SerializedName(value="status", alternate="Status") @Expose @Nullable public SimulationAutomationStatus statusThe Status. Status of the attack simulation automation. Supports $filter and $orderby. The possible values are: unknown, draft, notRunning, running, completed, unknownFutureValue. -
runs
@SerializedName(value="runs", alternate="Runs") @Expose @Nullable public SimulationAutomationRunCollectionPage runsThe Runs. A collection of simulation automation runs.
-
-
Constructor Details
-
SimulationAutomation
public SimulationAutomation()
-
-
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
-