com.azure.resourcemanager.network.models.ApplicationGatewaySkuName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/**
* Name of an application gateway SKU.
*/
public final class ApplicationGatewaySkuName extends ExpandableStringEnum {
/**
* Static value Standard_Small for ApplicationGatewaySkuName.
*/
public static final ApplicationGatewaySkuName STANDARD_SMALL = fromString("Standard_Small");
/**
* Static value Standard_Medium for ApplicationGatewaySkuName.
*/
public static final ApplicationGatewaySkuName STANDARD_MEDIUM = fromString("Standard_Medium");
/**
* Static value Standard_Large for ApplicationGatewaySkuName.
*/
public static final ApplicationGatewaySkuName STANDARD_LARGE = fromString("Standard_Large");
/**
* Static value WAF_Medium for ApplicationGatewaySkuName.
*/
public static final ApplicationGatewaySkuName WAF_MEDIUM = fromString("WAF_Medium");
/**
* Static value WAF_Large for ApplicationGatewaySkuName.
*/
public static final ApplicationGatewaySkuName WAF_LARGE = fromString("WAF_Large");
/**
* Static value Standard_v2 for ApplicationGatewaySkuName.
*/
public static final ApplicationGatewaySkuName STANDARD_V2 = fromString("Standard_v2");
/**
* Static value WAF_v2 for ApplicationGatewaySkuName.
*/
public static final ApplicationGatewaySkuName WAF_V2 = fromString("WAF_v2");
/**
* Static value Basic for ApplicationGatewaySkuName.
*/
public static final ApplicationGatewaySkuName BASIC = fromString("Basic");
/**
* Creates a new instance of ApplicationGatewaySkuName value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public ApplicationGatewaySkuName() {
}
/**
* Creates or finds a ApplicationGatewaySkuName from its string representation.
*
* @param name a name to look for.
* @return the corresponding ApplicationGatewaySkuName.
*/
@JsonCreator
public static ApplicationGatewaySkuName fromString(String name) {
return fromString(name, ApplicationGatewaySkuName.class);
}
/**
* Gets known ApplicationGatewaySkuName values.
*
* @return known ApplicationGatewaySkuName values.
*/
public static Collection values() {
return values(ApplicationGatewaySkuName.class);
}
}