Microsoft.Compute capacityReservationGroups/capacityReservations 2022-11-01
Bicep resource definition
The capacityReservationGroups/capacityReservations resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Compute/capacityReservationGroups/capacityReservations resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Compute/capacityReservationGroups/capacityReservations@2022-11-01' = {
parent: resourceSymbolicName
location: 'string'
name: 'string'
properties: {}
sku: {
capacity: int
name: 'string'
tier: 'string'
}
tags: {
{customized property}: 'string'
}
zones: [
'string'
]
}
Property values
CapacityReservationProperties
Name | Description | Value |
---|
Microsoft.Compute/capacityReservationGroups/capacityReservations
Name | Description | Value |
---|---|---|
location | Resource location | string (required) |
name | The resource name | string (required) |
parent | In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource. For more information, see Child resource outside parent resource. |
Symbolic name for resource of type: capacityReservationGroups |
properties | Properties of the Capacity reservation. | CapacityReservationProperties |
sku | SKU of the resource for which capacity needs be reserved. The SKU name and capacity is required to be set. Currently VM Skus with the capability called 'CapacityReservationSupported' set to true are supported. Refer to List Microsoft.Compute SKUs in a region (/rest/api/compute/resourceskus/list) for supported values. | Sku (required) |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
zones | Availability Zone to use for this capacity reservation. The zone has to be single value and also should be part for the list of zones specified during the capacity reservation group creation. The zone can be assigned only during creation. If not provided, the reservation supports only non-zonal deployments. If provided, enforces VM/VMSS using this capacity reservation to be in same zone. | string[] |
ResourceTags
Name | Description | Value |
---|
Sku
Name | Description | Value |
---|---|---|
capacity | Specifies the number of virtual machines in the scale set. | int |
name | The sku name. | string |
tier | Specifies the tier of virtual machines in a scale set. Possible Values: Standard Basic |
string |
ARM template resource definition
The capacityReservationGroups/capacityReservations resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Compute/capacityReservationGroups/capacityReservations resource, add the following JSON to your template.
{
"type": "Microsoft.Compute/capacityReservationGroups/capacityReservations",
"apiVersion": "2022-11-01",
"name": "string",
"location": "string",
"properties": {
},
"sku": {
"capacity": "int",
"name": "string",
"tier": "string"
},
"tags": {
"{customized property}": "string"
},
"zones": [ "string" ]
}
Property values
CapacityReservationProperties
Name | Description | Value |
---|
Microsoft.Compute/capacityReservationGroups/capacityReservations
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2022-11-01' |
location | Resource location | string (required) |
name | The resource name | string (required) |
properties | Properties of the Capacity reservation. | CapacityReservationProperties |
sku | SKU of the resource for which capacity needs be reserved. The SKU name and capacity is required to be set. Currently VM Skus with the capability called 'CapacityReservationSupported' set to true are supported. Refer to List Microsoft.Compute SKUs in a region (/rest/api/compute/resourceskus/list) for supported values. | Sku (required) |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.Compute/capacityReservationGroups/capacityReservations' |
zones | Availability Zone to use for this capacity reservation. The zone has to be single value and also should be part for the list of zones specified during the capacity reservation group creation. The zone can be assigned only during creation. If not provided, the reservation supports only non-zonal deployments. If provided, enforces VM/VMSS using this capacity reservation to be in same zone. | string[] |
ResourceTags
Name | Description | Value |
---|
Sku
Name | Description | Value |
---|---|---|
capacity | Specifies the number of virtual machines in the scale set. | int |
name | The sku name. | string |
tier | Specifies the tier of virtual machines in a scale set. Possible Values: Standard Basic |
string |
Terraform (AzAPI provider) resource definition
The capacityReservationGroups/capacityReservations resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Compute/capacityReservationGroups/capacityReservations resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Compute/capacityReservationGroups/capacityReservations@2022-11-01"
name = "string"
location = "string"
sku = {
capacity = int
name = "string"
tier = "string"
}
tags = {
{customized property} = "string"
}
zones = [
"string"
]
body = jsonencode({
properties = {
}
})
}
Property values
CapacityReservationProperties
Name | Description | Value |
---|
Microsoft.Compute/capacityReservationGroups/capacityReservations
Name | Description | Value |
---|---|---|
location | Resource location | string (required) |
name | The resource name | string (required) |
parent_id | The ID of the resource that is the parent for this resource. | ID for resource of type: capacityReservationGroups |
properties | Properties of the Capacity reservation. | CapacityReservationProperties |
sku | SKU of the resource for which capacity needs be reserved. The SKU name and capacity is required to be set. Currently VM Skus with the capability called 'CapacityReservationSupported' set to true are supported. Refer to List Microsoft.Compute SKUs in a region (/rest/api/compute/resourceskus/list) for supported values. | Sku (required) |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.Compute/capacityReservationGroups/capacityReservations@2022-11-01" |
zones | Availability Zone to use for this capacity reservation. The zone has to be single value and also should be part for the list of zones specified during the capacity reservation group creation. The zone can be assigned only during creation. If not provided, the reservation supports only non-zonal deployments. If provided, enforces VM/VMSS using this capacity reservation to be in same zone. | string[] |
ResourceTags
Name | Description | Value |
---|
Sku
Name | Description | Value |
---|---|---|
capacity | Specifies the number of virtual machines in the scale set. | int |
name | The sku name. | string |
tier | Specifies the tier of virtual machines in a scale set. Possible Values: Standard Basic |
string |