com.azure.resourcemanager.monitor.models.AlertSeverity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-monitor Show documentation
Show all versions of azure-resourcemanager-monitor Show documentation
This package contains Microsoft Azure Monitor SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
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.monitor.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Severity of the alert. Should be an integer between [0-4]. Value of 0 is severest. Relevant and required only for
* rules of the kind LogAlert.
*/
public final class AlertSeverity extends ExpandableStringEnum {
/**
* Static value 0 for AlertSeverity.
*/
public static final AlertSeverity ZERO = fromLong(0L);
/**
* Static value 1 for AlertSeverity.
*/
public static final AlertSeverity ONE = fromLong(1L);
/**
* Static value 2 for AlertSeverity.
*/
public static final AlertSeverity TWO = fromLong(2L);
/**
* Static value 3 for AlertSeverity.
*/
public static final AlertSeverity THREE = fromLong(3L);
/**
* Static value 4 for AlertSeverity.
*/
public static final AlertSeverity FOUR = fromLong(4L);
/**
* Creates a new instance of AlertSeverity value.
*
* @deprecated Use the {@link #fromLong(long)} factory method.
*/
@Deprecated
public AlertSeverity() {
}
/**
* Creates or finds a AlertSeverity from its string representation.
*
* @param name a name to look for.
* @return the corresponding AlertSeverity.
*/
public static AlertSeverity fromLong(long name) {
return fromString(String.valueOf(name), AlertSeverity.class);
}
/**
* Gets known AlertSeverity values.
*
* @return known AlertSeverity values.
*/
public static Collection values() {
return values(AlertSeverity.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy