com.microsoft.azure.management.monitor.EventDataPropertyName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-monitor Show documentation
Show all versions of azure-mgmt-monitor Show documentation
This package contains Microsoft Azure Monitor SDK. This package has been deprecated. A replacement package com.azure.resourcemanager:azure-resourcemanager-monitor is available as of 31-March-2022. We strongly encourage you to upgrade to continue receiving updates. See Migration Guide https://aka.ms/java-track2-migration-guide for guidance on upgrading. Refer to our deprecation policy https://azure.github.io/azure-sdk/policies_support.html for more details.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.azure.management.monitor;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.microsoft.azure.management.apigeneration.LangDefinition;
import com.microsoft.rest.ExpandableStringEnum;
import java.util.Collection;
/**
* Defines values for EventDataPropertyName.
*/
@LangDefinition(ContainerName = "/Microsoft.Azure.Management.Monitor.Fluent.Models")
public final class EventDataPropertyName extends ExpandableStringEnum {
/** Static value "authorization" for EventDataPropertyName. */
public static final EventDataPropertyName AUTHORIZATION = fromString("authorization");
/** Static value "claims" for EventDataPropertyName. */
public static final EventDataPropertyName CLAIMS = fromString("claims");;
/** Static value "correlationId" for EventDataPropertyName. */
public static final EventDataPropertyName CORRELATIONID = fromString("correlationId");
/** Static value "description" for EventDataPropertyName. */
public static final EventDataPropertyName DESCRIPTION = fromString("description");
/** Static value "eventDataId" for EventDataPropertyName. */
public static final EventDataPropertyName EVENTDATAID = fromString("eventDataId");
/** Static value "eventName" for EventDataPropertyName. */
public static final EventDataPropertyName EVENTNAME = fromString("eventName");
/** Static value "eventTimestamp" for EventDataPropertyName. */
public static final EventDataPropertyName EVENTTIMESTAMP = fromString("eventTimestamp");
/** Static value "httpRequest" for EventDataPropertyName. */
public static final EventDataPropertyName HTTPREQUEST = fromString("httpRequest");
/** Static value "level" for EventDataPropertyName. */
public static final EventDataPropertyName LEVEL = fromString("level");
/** Static value "operationId" for EventDataPropertyName. */
public static final EventDataPropertyName OPERATIONID = fromString("operationId");
/** Static value "operationName" for EventDataPropertyName. */
public static final EventDataPropertyName OPERATIONNAME = fromString("operationName");
/** Static value "properties" for EventDataPropertyName. */
public static final EventDataPropertyName PROPERTIES = fromString("properties");
/** Static value "resourceGroupName" for EventDataPropertyName. */
public static final EventDataPropertyName RESOURCEGROUPNAME = fromString("resourceGroupName");
/** Static value "resourceProviderName" for EventDataPropertyName. */
public static final EventDataPropertyName RESOURCEPROVIDERNAME = fromString("resourceProviderName");
/** Static value "resourceId" for EventDataPropertyName. */
public static final EventDataPropertyName RESOURCEID = fromString("resourceId");
/** Static value "status" for EventDataPropertyName. */
public static final EventDataPropertyName STATUS = fromString("status");
/** Static value "submissionTimestamp" for EventDataPropertyName. */
public static final EventDataPropertyName SUBMISSIONTIMESTAMP = fromString("submissionTimestamp");
/** Static value "subStatus" for EventDataPropertyName. */
public static final EventDataPropertyName SUBSTATUS = fromString("subStatus");
/** Static value "subscriptionId" for EventDataPropertyName. */
public static final EventDataPropertyName SUBSCRIPTIONID = fromString("subscriptionId");
/**
* Creates or finds a EventDataPropertyName from its string representation.
* @param name a name to look for
* @return the corresponding WebhookAction
*/
@JsonCreator
public static EventDataPropertyName fromString(String name) {
return fromString(name, EventDataPropertyName.class);
}
/**
* @return known WebhookAction values
*/
public static Collection values() {
return values(EventDataPropertyName.class);
}
}