com.azure.messaging.eventgrid.systemevents.AppServicePlanAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-messaging-eventgrid Show documentation
Show all versions of azure-messaging-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.messaging.eventgrid.systemevents;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Type of action on the app service plan.
*/
public final class AppServicePlanAction extends ExpandableStringEnum {
/**
* App Service plan is being updated.
*/
public static final AppServicePlanAction UPDATED = fromString("Updated");
/**
* Creates a new instance of AppServicePlanAction value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public AppServicePlanAction() {
}
/**
* Creates or finds a AppServicePlanAction from its string representation.
*
* @param name a name to look for.
* @return the corresponding AppServicePlanAction.
*/
public static AppServicePlanAction fromString(String name) {
return fromString(name, AppServicePlanAction.class);
}
/**
* Gets known AppServicePlanAction values.
*
* @return known AppServicePlanAction values.
*/
public static Collection values() {
return values(AppServicePlanAction.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy