Bicep resource definition
The sites/slots/premieraddons resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.Web/sites/slots/premieraddons resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Web/sites/slots/premieraddons@2015-08-01' = {
parent: resourceSymbolicName
location: 'string'
name: 'string'
plan: {
name: 'string'
product: 'string'
promotionCode: 'string'
publisher: 'string'
version: 'string'
}
properties: any(...)
sku: {
capacity: int
family: 'string'
name: 'string'
size: 'string'
tier: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.Web/sites/slots/premieraddons
| Name |
Description |
Value |
| location |
Geo region resource belongs to e.g. SouthCentralUS, SouthEastAsia |
string |
| 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: sites/slots |
| plan |
Azure resource manager plan |
ArmPlan |
| properties |
Resource specific properties |
any |
| sku |
Sku description of the resource |
SkuDescription |
| tags |
Resource tags |
Dictionary of tag names and values. See Tags in templates |
ArmPlan
| Name |
Description |
Value |
| name |
The name |
string |
| product |
The product |
string |
| promotionCode |
The promotion code |
string |
| publisher |
The publisher |
string |
| version |
Version of product |
string |
SkuDescription
| Name |
Description |
Value |
| capacity |
Current number of instances assigned to the resource |
int |
| family |
Family code of the resource sku |
string |
| name |
Name of the resource sku |
string |
| size |
Size specifier of the resource sku |
string |
| tier |
Service Tier of the resource sku |
string |
ARM template resource definition
The sites/slots/premieraddons resource type can be deployed with operations that target:
Usage Examples
To create a Microsoft.Web/sites/slots/premieraddons resource, add the following JSON to your template.
{
"type": "Microsoft.Web/sites/slots/premieraddons",
"apiVersion": "2015-08-01",
"name": "string",
"location": "string",
"plan": {
"name": "string",
"product": "string",
"promotionCode": "string",
"publisher": "string",
"version": "string"
},
"properties": {},
"sku": {
"capacity": "int",
"family": "string",
"name": "string",
"size": "string",
"tier": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.Web/sites/slots/premieraddons
| Name |
Description |
Value |
| apiVersion |
The api version |
'2015-08-01' |
| location |
Geo region resource belongs to e.g. SouthCentralUS, SouthEastAsia |
string |
| name |
The resource name |
string (required) |
| plan |
Azure resource manager plan |
ArmPlan |
| properties |
Resource specific properties |
any |
| sku |
Sku description of the resource |
SkuDescription |
| tags |
Resource tags |
Dictionary of tag names and values. See Tags in templates |
| type |
The resource type |
'Microsoft.Web/sites/slots/premieraddons' |
ArmPlan
| Name |
Description |
Value |
| name |
The name |
string |
| product |
The product |
string |
| promotionCode |
The promotion code |
string |
| publisher |
The publisher |
string |
| version |
Version of product |
string |
SkuDescription
| Name |
Description |
Value |
| capacity |
Current number of instances assigned to the resource |
int |
| family |
Family code of the resource sku |
string |
| name |
Name of the resource sku |
string |
| size |
Size specifier of the resource sku |
string |
| tier |
Service Tier of the resource sku |
string |
The sites/slots/premieraddons resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
To create a Microsoft.Web/sites/slots/premieraddons resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Web/sites/slots/premieraddons@2015-08-01"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
plan = {
name = "string"
product = "string"
promotionCode = "string"
publisher = "string"
version = "string"
}
properties = ?
sku = {
capacity = int
family = "string"
name = "string"
size = "string"
tier = "string"
}
}
}
Property Values
Microsoft.Web/sites/slots/premieraddons
| Name |
Description |
Value |
| location |
Geo region resource belongs to e.g. SouthCentralUS, SouthEastAsia |
string |
| 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: sites/slots |
| plan |
Azure resource manager plan |
ArmPlan |
| properties |
Resource specific properties |
any |
| sku |
Sku description of the resource |
SkuDescription |
| tags |
Resource tags |
Dictionary of tag names and values. |
| type |
The resource type |
"Microsoft.Web/sites/slots/premieraddons@2015-08-01" |
ArmPlan
| Name |
Description |
Value |
| name |
The name |
string |
| product |
The product |
string |
| promotionCode |
The promotion code |
string |
| publisher |
The publisher |
string |
| version |
Version of product |
string |
SkuDescription
| Name |
Description |
Value |
| capacity |
Current number of instances assigned to the resource |
int |
| family |
Family code of the resource sku |
string |
| name |
Name of the resource sku |
string |
| size |
Size specifier of the resource sku |
string |
| tier |
Service Tier of the resource sku |
string |