![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.securityinsights.models.DeviceImportance Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-securityinsights Show documentation
Show all versions of azure-resourcemanager-securityinsights Show documentation
This package contains Microsoft Azure SDK for SecurityInsights Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. API spec for Microsoft.SecurityInsights (Azure Security Insights) resource provider. Package tag package-preview-2021-09.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.securityinsights.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Device importance, determines if the device classified as 'crown jewel'.
*/
public final class DeviceImportance extends ExpandableStringEnum {
/**
* Static value Unknown for DeviceImportance.
*/
public static final DeviceImportance UNKNOWN = fromString("Unknown");
/**
* Static value Low for DeviceImportance.
*/
public static final DeviceImportance LOW = fromString("Low");
/**
* Static value Normal for DeviceImportance.
*/
public static final DeviceImportance NORMAL = fromString("Normal");
/**
* Static value High for DeviceImportance.
*/
public static final DeviceImportance HIGH = fromString("High");
/**
* Creates a new instance of DeviceImportance value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public DeviceImportance() {
}
/**
* Creates or finds a DeviceImportance from its string representation.
*
* @param name a name to look for.
* @return the corresponding DeviceImportance.
*/
public static DeviceImportance fromString(String name) {
return fromString(name, DeviceImportance.class);
}
/**
* Gets known DeviceImportance values.
*
* @return known DeviceImportance values.
*/
public static Collection values() {
return values(DeviceImportance.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy