com.azure.resourcemanager.securityinsights.models.EventGroupingAggregationKind 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-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 event grouping aggregation kinds.
*/
public final class EventGroupingAggregationKind extends ExpandableStringEnum {
/**
* Static value SingleAlert for EventGroupingAggregationKind.
*/
public static final EventGroupingAggregationKind SINGLE_ALERT = fromString("SingleAlert");
/**
* Static value AlertPerResult for EventGroupingAggregationKind.
*/
public static final EventGroupingAggregationKind ALERT_PER_RESULT = fromString("AlertPerResult");
/**
* Creates a new instance of EventGroupingAggregationKind value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public EventGroupingAggregationKind() {
}
/**
* Creates or finds a EventGroupingAggregationKind from its string representation.
*
* @param name a name to look for.
* @return the corresponding EventGroupingAggregationKind.
*/
public static EventGroupingAggregationKind fromString(String name) {
return fromString(name, EventGroupingAggregationKind.class);
}
/**
* Gets known EventGroupingAggregationKind values.
*
* @return known EventGroupingAggregationKind values.
*/
public static Collection values() {
return values(EventGroupingAggregationKind.class);
}
}