forked from Azure/azure-resource-manager-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from a0b9293e4d28863b7287eaf75d8052309576dbfc
- Loading branch information
SDK Automation
committed
Sep 21, 2020
1 parent
791a4e1
commit 94d75aa
Showing
9 changed files
with
2,350 additions
and
555 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
{ | ||
"id": "https://schema.management.azure.com/schemas/2017-10-01/microsoft.insights.json#", | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "microsoft.insights", | ||
"description": "microsoft insights Resource Types", | ||
"resourceDefinitions": { | ||
"components_pricingPlans": { | ||
"type": "object", | ||
"properties": { | ||
"apiVersion": { | ||
"type": "string", | ||
"enum": [ | ||
"2017-10-01" | ||
] | ||
}, | ||
"name": { | ||
"oneOf": [ | ||
{ | ||
"type": "string", | ||
"pattern": "^.*/current$" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
] | ||
}, | ||
"properties": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/PricingPlanProperties" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "An Application Insights component daily data volume cap" | ||
}, | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"microsoft.insights/components/pricingPlans" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"apiVersion", | ||
"name", | ||
"properties", | ||
"type" | ||
], | ||
"description": "microsoft.insights/components/pricingPlans" | ||
} | ||
}, | ||
"definitions": { | ||
"PricingPlanProperties": { | ||
"type": "object", | ||
"properties": { | ||
"cap": { | ||
"oneOf": [ | ||
{ | ||
"type": "number" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Daily data volume cap in GB." | ||
}, | ||
"planType": { | ||
"type": "string", | ||
"description": "Pricing Plan Type Name." | ||
}, | ||
"stopSendNotificationWhenHitCap": { | ||
"oneOf": [ | ||
{ | ||
"type": "boolean" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Do not send a notification email when the daily data volume cap is met." | ||
}, | ||
"stopSendNotificationWhenHitThreshold": { | ||
"oneOf": [ | ||
{ | ||
"type": "boolean" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Reserved, not used for now." | ||
}, | ||
"warningThreshold": { | ||
"oneOf": [ | ||
{ | ||
"type": "integer" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Reserved, not used for now." | ||
} | ||
}, | ||
"description": "An Application Insights component daily data volume cap" | ||
} | ||
} | ||
} |
Oops, something went wrong.