com.microsoft.graph.models.WindowsMalwareState 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 State.
*/
public enum WindowsMalwareState
{
/**
* unknown
*/
UNKNOWN,
/**
* detected
*/
DETECTED,
/**
* cleaned
*/
CLEANED,
/**
* quarantined
*/
QUARANTINED,
/**
* removed
*/
REMOVED,
/**
* allowed
*/
ALLOWED,
/**
* blocked
*/
BLOCKED,
/**
* clean Failed
*/
CLEAN_FAILED,
/**
* quarantine Failed
*/
QUARANTINE_FAILED,
/**
* remove Failed
*/
REMOVE_FAILED,
/**
* allow Failed
*/
ALLOW_FAILED,
/**
* abandoned
*/
ABANDONED,
/**
* block Failed
*/
BLOCK_FAILED,
/**
* For WindowsMalwareState values that were not expected from the service
*/
UNEXPECTED_VALUE
}