
com.azure.resourcemanager.fabric.models.RpSkuTier Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) TypeSpec Code Generator.
package com.azure.resourcemanager.fabric.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* The name of the Azure pricing tier to which the SKU applies.
*/
public final class RpSkuTier extends ExpandableStringEnum {
/**
* Fabric tier.
*/
public static final RpSkuTier FABRIC = fromString("Fabric");
/**
* Creates a new instance of RpSkuTier value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public RpSkuTier() {
}
/**
* Creates or finds a RpSkuTier from its string representation.
*
* @param name a name to look for.
* @return the corresponding RpSkuTier.
*/
public static RpSkuTier fromString(String name) {
return fromString(name, RpSkuTier.class);
}
/**
* Gets known RpSkuTier values.
*
* @return known RpSkuTier values.
*/
public static Collection values() {
return values(RpSkuTier.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy