Microsoft.Security pricings 2018-06-01

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@2018-06-01' = {
  name: 'string'
  properties: {
    pricingTier: 'string'
  }
}

Property values

Microsoft.Security/pricings

Name Description Value
name The resource name string (required)
properties Pricing data PricingProperties

PricingProperties

Name Description Value
pricingTier The pricing tier value. Microsoft Defender for Cloud is provided in two pricing tiers: free and standard, with the standard tier available with a trial period. The standard tier offers advanced security capabilities, while the free tier offers basic security features. '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": "2018-06-01",
  "name": "string",
  "properties": {
    "pricingTier": "string"
  }
}

Property values

Microsoft.Security/pricings

Name Description Value
apiVersion The api version '2018-06-01'
name The resource name string (required)
properties Pricing data PricingProperties
type The resource type 'Microsoft.Security/pricings'

PricingProperties

Name Description Value
pricingTier The pricing tier value. Microsoft Defender for Cloud is provided in two pricing tiers: free and standard, with the standard tier available with a trial period. The standard tier offers advanced security capabilities, while the free tier offers basic security features. 'Free'
'Standard' (required)

Terraform (AzAPI provider) resource definition

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

  • Subscription

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@2018-06-01"
  name = "string"
  body = jsonencode({
    properties = {
      pricingTier = "string"
    }
  })
}

Property values

Microsoft.Security/pricings

Name Description Value
name The resource name string (required)
properties Pricing data PricingProperties
type The resource type "Microsoft.Security/pricings@2018-06-01"

PricingProperties

Name Description Value
pricingTier The pricing tier value. Microsoft Defender for Cloud is provided in two pricing tiers: free and standard, with the standard tier available with a trial period. The standard tier offers advanced security capabilities, while the free tier offers basic security features. 'Free'
'Standard' (required)