com.azure.resourcemanager.appplatform.models.ResourceSkuRestrictionsReasonCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-appplatform Show documentation
Show all versions of azure-resourcemanager-appplatform Show documentation
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.appplatform.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/**
* Gets the reason for restriction. Possible values include: 'QuotaId', 'NotAvailableForSubscription'.
*/
public final class ResourceSkuRestrictionsReasonCode extends ExpandableStringEnum {
/**
* Static value QuotaId for ResourceSkuRestrictionsReasonCode.
*/
public static final ResourceSkuRestrictionsReasonCode QUOTA_ID = fromString("QuotaId");
/**
* Static value NotAvailableForSubscription for ResourceSkuRestrictionsReasonCode.
*/
public static final ResourceSkuRestrictionsReasonCode NOT_AVAILABLE_FOR_SUBSCRIPTION
= fromString("NotAvailableForSubscription");
/**
* Creates a new instance of ResourceSkuRestrictionsReasonCode value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public ResourceSkuRestrictionsReasonCode() {
}
/**
* Creates or finds a ResourceSkuRestrictionsReasonCode from its string representation.
*
* @param name a name to look for.
* @return the corresponding ResourceSkuRestrictionsReasonCode.
*/
@JsonCreator
public static ResourceSkuRestrictionsReasonCode fromString(String name) {
return fromString(name, ResourceSkuRestrictionsReasonCode.class);
}
/**
* Gets known ResourceSkuRestrictionsReasonCode values.
*
* @return known ResourceSkuRestrictionsReasonCode values.
*/
public static Collection values() {
return values(ResourceSkuRestrictionsReasonCode.class);
}
}