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

com.azure.resourcemanager.databoxedge.models.SkuRestrictionReasonCode Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for DataBoxEdge Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Package tag package-2019-08.

There is a newer version: 1.0.0
Show 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.databoxedge.models;

import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;

/**
 * The SKU restriction reason.
 */
public final class SkuRestrictionReasonCode extends ExpandableStringEnum {
    /**
     * Static value NotAvailableForSubscription for SkuRestrictionReasonCode.
     */
    public static final SkuRestrictionReasonCode NOT_AVAILABLE_FOR_SUBSCRIPTION
        = fromString("NotAvailableForSubscription");

    /**
     * Static value QuotaId for SkuRestrictionReasonCode.
     */
    public static final SkuRestrictionReasonCode QUOTA_ID = fromString("QuotaId");

    /**
     * Creates a new instance of SkuRestrictionReasonCode value.
     * 
     * @deprecated Use the {@link #fromString(String)} factory method.
     */
    @Deprecated
    public SkuRestrictionReasonCode() {
    }

    /**
     * Creates or finds a SkuRestrictionReasonCode from its string representation.
     * 
     * @param name a name to look for.
     * @return the corresponding SkuRestrictionReasonCode.
     */
    public static SkuRestrictionReasonCode fromString(String name) {
        return fromString(name, SkuRestrictionReasonCode.class);
    }

    /**
     * Gets known SkuRestrictionReasonCode values.
     * 
     * @return known SkuRestrictionReasonCode values.
     */
    public static Collection values() {
        return values(SkuRestrictionReasonCode.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy