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

Update cdn.json #40

Open
wants to merge 47 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
40fdaf3
Update specificationRepositoryConfiguration.json
Descatles Sep 14, 2020
a0eda33
Update addons-swagger.json
zhenglaizhang Sep 14, 2020
2d75ca9
Fixed ActionRule's polymorphism via discriminator
EranGon Sep 17, 2020
7e07f1c
Update addons-swagger.json
zhenglaizhang Sep 20, 2020
b19e28a
Update apimapis.json
zhenglaizhang Sep 20, 2020
1f8c6fe
Update README.md
zhenglaizhang Sep 23, 2020
876db6f
Update README.md
zhenglaizhang Sep 23, 2020
64ab843
Update README.md
zhenglaizhang Sep 23, 2020
567c7c2
Update README.md
zhenglaizhang Sep 23, 2020
8e6e6ff
Merge pull request #22 from SDKAutoUP/zhenglaizhang-patch-8
zhenglaizhang Sep 23, 2020
5a3ae3c
Update README.md
zhenglaizhang Sep 25, 2020
0885999
Merge pull request #19 from SDKAutoUP/zhenglaizhang-patch-6
zhenglaizhang Sep 25, 2020
94abfa0
Revert "Update apimapis.json"
zhenglaizhang Sep 25, 2020
1d10c5c
Merge pull request #24 from SDKAutoUP/revert-19-zhenglaizhang-patch-6
zhenglaizhang Sep 25, 2020
06e688b
Revert "Revert "Update apimapis.json""
zhenglaizhang Sep 25, 2020
e52768f
Merge pull request #25 from SDKAutoUP/revert-24-revert-19-zhenglaizha…
zhenglaizhang Sep 25, 2020
454a4e6
Merge pull request #17 from SDKAutoUP/zhenglaizhang-patch-4
zhenglaizhang Sep 25, 2020
966c58b
Merge pull request #15 from EranGon/dev-alertsmanagement-Microsoft.Al…
zhenglaizhang Sep 28, 2020
e5927b9
Update README.md
zhenglaizhang Sep 28, 2020
108f554
Update README.md
zhenglaizhang Sep 28, 2020
a71e9b4
Update README.md
zhenglaizhang Sep 28, 2020
9019040
Update README.md
zhenglaizhang Sep 28, 2020
ed46031
Update README.md
zhenglaizhang Sep 28, 2020
1cf04f4
Update README.md
zhenglaizhang Sep 28, 2020
acdb491
Update README.md
zhenglaizhang Sep 28, 2020
b728db2
Update README.md
zhenglaizhang Sep 28, 2020
819f1ab
Update README.md
zhenglaizhang Sep 28, 2020
bb0e371
Update README.md
zhenglaizhang Sep 28, 2020
cecf79c
Update README.md
zhenglaizhang Sep 28, 2020
24ede7d
Update cdn.json
zhenglaizhang Sep 28, 2020
e5697c7
Merge pull request #26 from SDKAutoUP/test-cdn
zhenglaizhang Sep 28, 2020
55eff16
Update README.md
zhenglaizhang Sep 28, 2020
53ee7bd
Update README.md
zhenglaizhang Sep 28, 2020
86d47a0
Update README.md
zhenglaizhang Sep 29, 2020
84b297e
Update README.md
zhenglaizhang Sep 29, 2020
356f6d2
Update addons-swagger.json
zhenglaizhang Oct 12, 2020
76affd7
Update README.md
zhenglaizhang Oct 12, 2020
e760d4f
Merge pull request #27 from SDKAutoUP/zhenglaizhang-patch-9
zhenglaizhang Oct 12, 2020
e4ef5d0
Update README.md
zhenglaizhang Oct 12, 2020
1f103be
Merge pull request #28 from SDKAutoUP/zhenglaizhang-patch-11
zhenglaizhang Oct 12, 2020
76a52b8
Update addons-swagger.json
zhenglaizhang Oct 13, 2020
9ba80fb
Merge pull request #30 from SDKAutoUP/zhenglaizhang-patch-13
zhenglaizhang Oct 13, 2020
28e9486
Update addons-swagger.json
zhenglaizhang Oct 13, 2020
94d92e4
Merge pull request #31 from SDKAutoUP/zhenglaizhang-patch-14
zhenglaizhang Oct 13, 2020
b0ea889
Update cdn.json
zhenglaizhang Oct 19, 2020
30d753d
Merge pull request #33 from SDKAutoUP/zhenglaizhang-patch-16
zhenglaizhang Oct 20, 2020
712b128
Update cdn.json
zhenglaizhang Oct 26, 2020
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
Prev Previous commit
Next Next commit
Fixed ActionRule's polymorphism via discriminator
  • Loading branch information
EranGon committed Sep 17, 2020
commit 2d75ca929c9d06cbf7a10e58f1448a2baebfc6dd
Original file line number Diff line number Diff line change
Expand Up @@ -850,15 +850,15 @@
"$ref": "#/definitions/ActionRuleProperties"
},
{
"type": "object"
}
],
"properties": {
"suppressionConfig": {
"description": "suppression configuration for the action rule",
"$ref": "#/definitions/SuppressionConfig"
"type": "object",
"properties": {
"suppressionConfig": {
"description": "suppression configuration for the action rule",
"$ref": "#/definitions/SuppressionConfig"
}
}
}
}
]
},
"ActionGroup": {
"title": "Action Group based Action Rule",
Expand All @@ -871,15 +871,15 @@
"$ref": "#/definitions/ActionRuleProperties"
},
{
"type": "object"
}
],
"properties": {
"actionGroupId": {
"type": "string",
"description": "Action group to trigger if action rule matches"
"type": "object",
"properties": {
"actionGroupId": {
"type": "string",
"description": "Action group to trigger if action rule matches"
}
}
}
}
]
},
"Diagnostics": {
"title": "Diagnostics based Action Rule",
Expand Down