All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.compute.models.ComputeSkuTier Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Compute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 2.46.0
Show newest version
// 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