Skip to content

Commit 732284f

Browse files
author
SDK Automation
committed
Generated from b25259deeeab2bf814df2753de03407b9319b1fe
fix operation schema
1 parent 7c5d745 commit 732284f

File tree

9 files changed

+2744
-362
lines changed

9 files changed

+2744
-362
lines changed

schemas/2015-05-01/Microsoft.Insights.json

Lines changed: 1632 additions & 114 deletions
Large diffs are not rendered by default.
Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
{
2+
"id": "https://schema.management.azure.com/schemas/2017-10-01/microsoft.insights.json#",
3+
"$schema": "http://json-schema.org/draft-04/schema#",
4+
"title": "microsoft.insights",
5+
"description": "microsoft insights Resource Types",
6+
"resourceDefinitions": {
7+
"components_pricingPlans": {
8+
"type": "object",
9+
"properties": {
10+
"apiVersion": {
11+
"type": "string",
12+
"enum": [
13+
"2017-10-01"
14+
]
15+
},
16+
"name": {
17+
"oneOf": [
18+
{
19+
"type": "string",
20+
"pattern": "^.*/current$"
21+
},
22+
{
23+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
24+
}
25+
]
26+
},
27+
"properties": {
28+
"oneOf": [
29+
{
30+
"$ref": "#/definitions/PricingPlanProperties"
31+
},
32+
{
33+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
34+
}
35+
],
36+
"description": "An Application Insights component daily data volume cap"
37+
},
38+
"type": {
39+
"type": "string",
40+
"enum": [
41+
"microsoft.insights/components/pricingPlans"
42+
]
43+
}
44+
},
45+
"required": [
46+
"apiVersion",
47+
"name",
48+
"properties",
49+
"type"
50+
],
51+
"description": "microsoft.insights/components/pricingPlans"
52+
}
53+
},
54+
"definitions": {
55+
"PricingPlanProperties": {
56+
"type": "object",
57+
"properties": {
58+
"cap": {
59+
"oneOf": [
60+
{
61+
"type": "number"
62+
},
63+
{
64+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
65+
}
66+
],
67+
"description": "Daily data volume cap in GB."
68+
},
69+
"planType": {
70+
"type": "string",
71+
"description": "Pricing Plan Type Name."
72+
},
73+
"stopSendNotificationWhenHitCap": {
74+
"oneOf": [
75+
{
76+
"type": "boolean"
77+
},
78+
{
79+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
80+
}
81+
],
82+
"description": "Do not send a notification email when the daily data volume cap is met."
83+
},
84+
"stopSendNotificationWhenHitThreshold": {
85+
"oneOf": [
86+
{
87+
"type": "boolean"
88+
},
89+
{
90+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
91+
}
92+
],
93+
"description": "Reserved, not used for now."
94+
},
95+
"warningThreshold": {
96+
"oneOf": [
97+
{
98+
"type": "integer"
99+
},
100+
{
101+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
102+
}
103+
],
104+
"description": "Reserved, not used for now."
105+
}
106+
},
107+
"description": "An Application Insights component daily data volume cap"
108+
}
109+
}
110+
}

0 commit comments

Comments
 (0)