![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.compute.models.ComputeSkuTier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-compute Show documentation
Show all versions of azure-resourcemanager-compute Show documentation
This package contains Microsoft Azure Compute 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.compute.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/** Compute resource sku tier. */
@Fluent
public class ComputeSkuTier extends ExpandableStringEnum {
/** Static value Basic for ComputeSkuTier. */
public static final ComputeSkuTier BASIC = fromString("Basic");
/** Static value Standard for ComputeSkuTier. */
public static final ComputeSkuTier STANDARD = fromString("Standard");
/** Static value Premium for ComputeSkuTier. */
public static final ComputeSkuTier PREMIUM = fromString("Premium");
/**
* Creates or finds a ComputeSkuTier from its string representation.
*
* @param name a name to look for
* @return the corresponding ComputeSkuTier
*/
public static ComputeSkuTier fromString(String name) {
return fromString(name, ComputeSkuTier.class);
}
/** @return known ComputeSkuTier values */
public static Collection values() {
return values(ComputeSkuTier.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy