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 groupQuotas resource type can be deployed with operations that target:
- Management groups - See management group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Quota/groupQuotas resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Quota/groupQuotas@2024-12-18-preview' = {
name: 'string'
properties: {
displayName: 'string'
}
}
Property Values
Microsoft.Quota/groupQuotas
Name | Description | Value |
---|---|---|
name | The resource name | string Constraints: Min length = 3 Max length = 63 Pattern = ^[a-z][a-z0-9]*$ (required) |
properties | Properties | GroupQuotasEntityProperties |
GroupQuotasEntityProperties
Name | Description | Value |
---|---|---|
displayName | Display name of the GroupQuota entity. | string |
ARM template resource definition
The groupQuotas resource type can be deployed with operations that target:
- Management groups - See management group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Quota/groupQuotas resource, add the following JSON to your template.
{
"type": "Microsoft.Quota/groupQuotas",
"apiVersion": "2024-12-18-preview",
"name": "string",
"properties": {
"displayName": "string"
}
}
Property Values
Microsoft.Quota/groupQuotas
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2024-12-18-preview' |
name | The resource name | string Constraints: Min length = 3 Max length = 63 Pattern = ^[a-z][a-z0-9]*$ (required) |
properties | Properties | GroupQuotasEntityProperties |
type | The resource type | 'Microsoft.Quota/groupQuotas' |
GroupQuotasEntityProperties
Name | Description | Value |
---|---|---|
displayName | Display name of the GroupQuota entity. | string |
Usage Examples
Terraform (AzAPI provider) resource definition
The groupQuotas resource type can be deployed with operations that target:
- Management groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Quota/groupQuotas resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Quota/groupQuotas@2024-12-18-preview"
name = "string"
parent_id = "string"
body = {
properties = {
displayName = "string"
}
}
}
Property Values
Microsoft.Quota/groupQuotas
Name | Description | Value |
---|---|---|
name | The resource name | string Constraints: Min length = 3 Max length = 63 Pattern = ^[a-z][a-z0-9]*$ (required) |
properties | Properties | GroupQuotasEntityProperties |
type | The resource type | "Microsoft.Quota/groupQuotas@2024-12-18-preview" |
GroupQuotasEntityProperties
Name | Description | Value |
---|---|---|
displayName | Display name of the GroupQuota entity. | string |