The components/pricingPlans 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.insights/components/pricingPlans resource, add the following JSON to your template.
{
"type": "microsoft.insights/components/pricingPlans",
"apiVersion": "2017-10-01",
"name": "current",
"properties": {
"cap": "[json('decimal-as-string')]",
"planType": "string",
"stopSendNotificationWhenHitCap": "bool",
"stopSendNotificationWhenHitThreshold": "bool",
"warningThreshold": "int"
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'microsoft.insights/components/pricingPlans' |
apiVersion | The resource api version | '2017-10-01' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
'current' |
properties | The properties of the suppression. | PricingPlanProperties |
Name | Description | Value |
---|---|---|
cap | Daily data volume cap in GB. To specify a decimal value, use the json() function. | int or json decimal |
planType | Pricing Plan Type Name. | string |
stopSendNotificationWhenHitCap | Do not send a notification email when the daily data volume cap is met. | bool |
stopSendNotificationWhenHitThreshold | Reserved, not used for now. | bool |
warningThreshold | Reserved, not used for now. | int |