Microsoft.Web sites/premieraddons 2015-08-01

Bicep resource definition

The sites/premieraddons resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Web/sites/premieraddons resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Web/sites/premieraddons@2015-08-01' = {
  location: 'string'
  name: 'string'
  plan: {
    name: 'string'
    product: 'string'
    promotionCode: 'string'
    publisher: 'string'
    version: 'string'
  }
  properties: any(Azure.Bicep.Types.Concrete.AnyType)
  sku: {
    capacity: int
    family: 'string'
    name: 'string'
    size: 'string'
    tier: 'string'
  }
  tags: {
    {customized property}: 'string'
  }
}

Property values

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

Microsoft.Web/sites/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
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

PremierAddOnRequestTags

Name Description Value

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/premieraddons resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Web/sites/premieraddons resource, add the following JSON to your template.

{
  "type": "Microsoft.Web/sites/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

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

Microsoft.Web/sites/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/premieraddons'

PremierAddOnRequestTags

Name Description Value

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

Terraform (AzAPI provider) resource definition

The sites/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.

Resource format

To create a Microsoft.Web/sites/premieraddons resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Web/sites/premieraddons@2015-08-01"
  name = "string"
  location = "string"
  plan = {
    name = "string"
    product = "string"
    promotionCode = "string"
    publisher = "string"
    version = "string"
  }
  body = jsonencode({
    properties = ?
  })
  sku = {
    capacity = int
    family = "string"
    name = "string"
    size = "string"
    tier = "string"
  }
  tags = {
    {customized property} = "string"
  }
}

Property values

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

Microsoft.Web/sites/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
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/premieraddons@2015-08-01"

PremierAddOnRequestTags

Name Description Value

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