com.azure.resourcemanager.botservice.models.SkuTier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-botservice Show documentation
Show all versions of azure-resourcemanager-botservice Show documentation
This package contains Microsoft Azure SDK for BotService Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure Bot Service is a platform for creating smart conversational agents. Package tag package-2021-03-01.
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.botservice.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Gets the sku tier. This is based on the SKU name.
*/
public final class SkuTier extends ExpandableStringEnum {
/**
* Static value Free for SkuTier.
*/
public static final SkuTier FREE = fromString("Free");
/**
* Static value Standard for SkuTier.
*/
public static final SkuTier STANDARD = fromString("Standard");
/**
* Creates a new instance of SkuTier value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public SkuTier() {
}
/**
* Creates or finds a SkuTier from its string representation.
*
* @param name a name to look for.
* @return the corresponding SkuTier.
*/
public static SkuTier fromString(String name) {
return fromString(name, SkuTier.class);
}
/**
* Gets known SkuTier values.
*
* @return known SkuTier values.
*/
public static Collection values() {
return values(SkuTier.class);
}
}