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

Adklinge/add is legacy log analytics rule #12747

Merged
merged 25 commits into from
Feb 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
1ac2357
Update scheduledQueryRule_API.json
adklinge Dec 2, 2020
4b14a00
Update createOrUpdateScheduledQueryRules.json
adklinge Dec 6, 2020
be58c30
Update scheduledQueryRule_API.json
adklinge Dec 6, 2020
e6fae47
Fix to item ; https://portal.azure-devex-tools.com/amekpis/correctnes…
adklinge Dec 6, 2020
2e8067a
added display name to the new API version
adklinge Dec 6, 2020
c6189e5
Fixed descriptions
adklinge Dec 6, 2020
d23f09e
Added OverrideQueryTimeRange to Swagger on new API version
adklinge Dec 6, 2020
ca0910f
returned enabled property back to bool
adklinge Dec 6, 2020
78b5813
Merge branch 'adklinge/round_trip_error_fix'
adklinge Dec 7, 2020
504c205
Update scheduledQueryRule_API.json
adklinge Dec 7, 2020
98e27ba
Update scheduledQueryRule_API.json
adklinge Dec 7, 2020
efea44f
revert lindent correvction to avoid breaking chnage
adklinge Dec 8, 2020
6d579df
run prettier and fixed SubscriptionIdParameter
adklinge Dec 31, 2020
088cea0
revert subscripton id to the former description
adklinge Jan 11, 2021
bb6a56f
rebased from master
adklinge Jan 17, 2021
5e18e0e
aligned diagnosticSettings with master
adklinge Jan 17, 2021
00ccd7c
removed locaiton from example
adklinge Jan 20, 2021
527c5db
returned location to example
adklinge Jan 24, 2021
0395af7
supress false alaram OBJECT_ADDITIONAL_PROPERTIES error
adklinge Jan 25, 2021
e541ec8
fix suppression
adklinge Jan 25, 2021
cd57300
fix merge conflict
adklinge Jan 25, 2021
c35edf4
merged from master
adklinge Jan 25, 2021
39fb8a0
removed where clause
adklinge Jan 25, 2021
caefeb4
added properties isLegacyLogAnalyticsRule, createdWithApiVersion to b…
adklinge Jan 31, 2021
54c2c16
Merge remote-tracking branch 'upstream/master' into adklinge/add_isLe…
adklinge Feb 1, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,16 @@
},
"ScheduledQueryRuleProperties": {
"properties": {
"createdWithApiVersion": {
"type": "string",
"readOnly": true,
"description": "The api-version used when creating this alert rule"
},
"isLegacyLogAnalyticsRule": {
"type": "boolean",
"readOnly": true,
"description": "True if alert rule is legacy Log Analytic rule"
},
"description": {
"type": "string",
"description": "The description of the scheduled query rule."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -585,6 +585,16 @@
"LogSearchRule": {
"description": "Log Search Rule Definition",
"properties": {
"createdWithApiVersion": {
"type": "string",
"readOnly": true,
"description": "The api-version used when creating this alert rule"
},
"isLegacyLogAnalyticsRule": {
"type": "boolean",
"readOnly": true,
"description": "True if alert rule is legacy Log Analytic rule"
},
"description": {
"type": "string",
"description": "The description of the Log Search rule."
Expand Down