Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR applicationinsights] Adding new api version- 2021-03-08 #2015

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,851 changes: 1,851 additions & 0 deletions schemas/2015-05-01/microsoft.insights.json

Large diffs are not rendered by default.

110 changes: 110 additions & 0 deletions schemas/2017-10-01/microsoft.insights.json
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"
}
}
}
Loading