Package com.microsoft.graph.models
Class MalwareStateForWindowsDevice
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.MalwareStateForWindowsDevice
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class MalwareStateForWindowsDevice
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Malware State For Windows Device.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Detection Count.The Device Name.The Execution State.The Initial Detection Date Time.The Last State Change Date Time.The Threat State. -
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
-
detectionCount
@SerializedName(value="detectionCount", alternate="DetectionCount") @Expose @Nullable public Integer detectionCountThe Detection Count. Indicates the number of times the malware is detected -
deviceName
@SerializedName(value="deviceName", alternate="DeviceName") @Expose @Nullable public String deviceNameThe Device Name. Indicates the name of the device being evaluated for malware state -
executionState
@SerializedName(value="executionState", alternate="ExecutionState") @Expose @Nullable public WindowsMalwareExecutionState executionStateThe Execution State. Indicates execution status of the malware. Possible values are: unknown, blocked, allowed, running, notRunning. Defaults to unknown. Possible values are: unknown, blocked, allowed, running, notRunning. -
initialDetectionDateTime
@SerializedName(value="initialDetectionDateTime", alternate="InitialDetectionDateTime") @Expose @Nullable public OffsetDateTime initialDetectionDateTimeThe Initial Detection Date Time. Initial detection datetime of the malware -
lastStateChangeDateTime
@SerializedName(value="lastStateChangeDateTime", alternate="LastStateChangeDateTime") @Expose @Nullable public OffsetDateTime lastStateChangeDateTimeThe Last State Change Date Time. The last time this particular threat was changed -
threatState
@SerializedName(value="threatState", alternate="ThreatState") @Expose @Nullable public WindowsMalwareThreatState threatStateThe Threat State. Indicates threat status of the malware. Possible values are: active, actionFailed, manualStepsRequired, fullScanRequired, rebootRequired, remediatedWithNonCriticalFailures, quarantined, removed, cleaned, allowed, noStatusCleared. defaults to noStatusCleared. Possible values are: active, actionFailed, manualStepsRequired, fullScanRequired, rebootRequired, remediatedWithNonCriticalFailures, quarantined, removed, cleaned, allowed, noStatusCleared.
-
-
Constructor Details
-
MalwareStateForWindowsDevice
public MalwareStateForWindowsDevice()
-
-
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
-