Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The quotaTiers resource type can be deployed with operations that target:
- Subscription - See subscription deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.CognitiveServices/quotaTiers resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.CognitiveServices/quotaTiers@2026-05-15-preview' = {
name: 'string'
properties: {
tierUpgradePolicy: 'string'
}
}
Property Values
Microsoft.CognitiveServices/quotaTiers
| Name | Description | Value |
|---|---|---|
| name | The resource name | string (required) |
| properties | Properties of quota tier resource. | QuotaTierProperties |
QuotaTierProperties
| Name | Description | Value |
|---|---|---|
| tierUpgradePolicy | Gets the tier upgrade policy for the subscription. | 'NoAutoUpgrade' 'OnceUpgradeIsAvailable' |
ARM template resource definition
The quotaTiers resource type can be deployed with operations that target:
- Subscription - See subscription deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.CognitiveServices/quotaTiers resource, add the following JSON to your template.
{
"type": "Microsoft.CognitiveServices/quotaTiers",
"apiVersion": "2026-05-15-preview",
"name": "string",
"properties": {
"tierUpgradePolicy": "string"
}
}
Property Values
Microsoft.CognitiveServices/quotaTiers
| Name | Description | Value |
|---|---|---|
| apiVersion | The api version | '2026-05-15-preview' |
| name | The resource name | string (required) |
| properties | Properties of quota tier resource. | QuotaTierProperties |
| type | The resource type | 'Microsoft.CognitiveServices/quotaTiers' |
QuotaTierProperties
| Name | Description | Value |
|---|---|---|
| tierUpgradePolicy | Gets the tier upgrade policy for the subscription. | 'NoAutoUpgrade' 'OnceUpgradeIsAvailable' |
Usage Examples
Terraform (AzAPI provider) resource definition
The quotaTiers resource type can be deployed with operations that target:
- Subscription
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.CognitiveServices/quotaTiers resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.CognitiveServices/quotaTiers@2026-05-15-preview"
name = "string"
parent_id = "string"
body = {
properties = {
tierUpgradePolicy = "string"
}
}
}
Property Values
Microsoft.CognitiveServices/quotaTiers
| Name | Description | Value |
|---|---|---|
| name | The resource name | string (required) |
| properties | Properties of quota tier resource. | QuotaTierProperties |
| type | The resource type | "Microsoft.CognitiveServices/quotaTiers@2026-05-15-preview" |
QuotaTierProperties
| Name | Description | Value |
|---|---|---|
| tierUpgradePolicy | Gets the tier upgrade policy for the subscription. | 'NoAutoUpgrade' 'OnceUpgradeIsAvailable' |