All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.securityinsights.models.IncidentSeverity Maven / Gradle / Ivy

Go to download

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-2022-09.

The newest version!
// 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;

/**
 * The severity of the incident.
 */
public final class IncidentSeverity extends ExpandableStringEnum {
    /**
     * Static value High for IncidentSeverity.
     */
    public static final IncidentSeverity HIGH = fromString("High");

    /**
     * Static value Medium for IncidentSeverity.
     */
    public static final IncidentSeverity MEDIUM = fromString("Medium");

    /**
     * Static value Low for IncidentSeverity.
     */
    public static final IncidentSeverity LOW = fromString("Low");

    /**
     * Static value Informational for IncidentSeverity.
     */
    public static final IncidentSeverity INFORMATIONAL = fromString("Informational");

    /**
     * Creates a new instance of IncidentSeverity value.
     * 
     * @deprecated Use the {@link #fromString(String)} factory method.
     */
    @Deprecated
    public IncidentSeverity() {
    }

    /**
     * Creates or finds a IncidentSeverity from its string representation.
     * 
     * @param name a name to look for.
     * @return the corresponding IncidentSeverity.
     */
    public static IncidentSeverity fromString(String name) {
        return fromString(name, IncidentSeverity.class);
    }

    /**
     * Gets known IncidentSeverity values.
     * 
     * @return known IncidentSeverity values.
     */
    public static Collection values() {
        return values(IncidentSeverity.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy