Microsoft.Security pricings 2017-08-01-preview

Bicep resource definition

The pricings 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.Security/pricings resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Security/pricings@2017-08-01-preview' = {
  name: 'string'
  properties: {
    pricingTier: 'string'
  }
}

Property values

pricings

Name Description Value
name The resource name string (required)

Character limit: 1-260

Valid characters:
Alphanumerics, underscores, and hyphens.
properties Pricing data PricingProperties

PricingProperties

Name Description Value
pricingTier Pricing tier type 'Free'
'Standard' (required)

ARM template resource definition

The pricings 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.Security/pricings resource, add the following JSON to your template.

{
  "type": "Microsoft.Security/pricings",
  "apiVersion": "2017-08-01-preview",
  "name": "string",
  "properties": {
    "pricingTier": "string"
  }
}

Property values

pricings

Name Description Value
type The resource type 'Microsoft.Security/pricings'
apiVersion The resource api version '2017-08-01-preview'
name The resource name string (required)

Character limit: 1-260

Valid characters:
Alphanumerics, underscores, and hyphens.
properties Pricing data PricingProperties

PricingProperties

Name Description Value
pricingTier Pricing tier type 'Free'
'Standard' (required)

Terraform (AzAPI provider) resource definition

The pricings resource type can be deployed with operations that target:

  • Subscriptions
  • Resource groups

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

Resource format

To create a Microsoft.Security/pricings resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Security/pricings@2017-08-01-preview"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      pricingTier = "string"
    }
  })
}

Property values

pricings

Name Description Value
type The resource type "Microsoft.Security/pricings@2017-08-01-preview"
name The resource name string (required)

Character limit: 1-260

Valid characters:
Alphanumerics, underscores, and hyphens.
parent_id To deploy to a subscription, use the ID of that subscription. To deploy to a resource group, use the ID of that resource group. string (required)
properties Pricing data PricingProperties

PricingProperties

Name Description Value
pricingTier Pricing tier type "Free"
"Standard" (required)