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

com.azure.resourcemanager.appplatform.models.SkuName Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.42.0
Show newest version
// 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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy