com.azure.resourcemanager.appplatform.models.SkuName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-appplatform Show documentation
Show all versions of azure-resourcemanager-appplatform Show documentation
This package contains Microsoft Azure App Platform 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.
package com.azure.resourcemanager.appplatform.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/** Defines values for SkuName. */
public final class SkuName extends ExpandableStringEnum {
/** Static value B0 for SkuName. */
public static final SkuName B0 = fromString("B0");
/** Static value S0 for SkuName. */
public static final SkuName S0 = fromString("S0");
/**
* (Avoid using it. Instead, consider using {@link SpringService.DefinitionStages.WithSku#withEnterpriseTierSku})
* Static value E0 for SkuName. This stands for Enterprise Tier.
*/
public static final SkuName E0 = fromString("E0");
/**
* Creates or finds a SkuName from its string representation.
*
* @param name a name to look for.
* @return the corresponding SkuName.
*/
@JsonCreator
public static SkuName fromString(String name) {
return fromString(name, SkuName.class);
}
/** @return known SkuName values. */
public static Collection values() {
return values(SkuName.class);
}
}