com.microsoft.graph.models.WindowsMalwareThreatState Maven / Gradle / Ivy
// Template Source: Enum.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.models;
/**
* The Enum Windows Malware Threat State.
*/
public enum WindowsMalwareThreatState
{
/**
* active
*/
ACTIVE,
/**
* action Failed
*/
ACTION_FAILED,
/**
* manual Steps Required
*/
MANUAL_STEPS_REQUIRED,
/**
* full Scan Required
*/
FULL_SCAN_REQUIRED,
/**
* reboot Required
*/
REBOOT_REQUIRED,
/**
* remediated With Non Critical Failures
*/
REMEDIATED_WITH_NON_CRITICAL_FAILURES,
/**
* quarantined
*/
QUARANTINED,
/**
* removed
*/
REMOVED,
/**
* cleaned
*/
CLEANED,
/**
* allowed
*/
ALLOWED,
/**
* no Status Cleared
*/
NO_STATUS_CLEARED,
/**
* For WindowsMalwareThreatState values that were not expected from the service
*/
UNEXPECTED_VALUE
}