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

[FrontDoor WAF] Add RuleSetId to Managed Rule Set Definitions API #8382

Merged
merged 1 commit into from
Mar 4, 2020
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"type": "Microsoft.Network/frontdoorwebapplicationfirewallmanagedrulesets",
"properties": {
"provisioningState": "Succeeded",
"ruleSetId": "8125d145-ddc5-4d90-9bc3-24c5f2de69a2",
"ruleSetType": "DefaultRuleSet",
"ruleSetVersion": "1.0",
"ruleGroups": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,11 @@
"readOnly": true,
"description": "Provisioning state of the managed rule set."
},
"ruleSetId": {
"type": "string",
"readOnly": true,
"description": "Id of the managed rule set."
},
"ruleSetType": {
"type": "string",
"readOnly": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"type": "Microsoft.Network/frontdoorwebapplicationfirewallmanagedrulesets",
"properties": {
"provisioningState": "Succeeded",
"ruleSetId": "8125d145-ddc5-4d90-9bc3-24c5f2de69a2",
"ruleSetType": "DefaultRuleSet",
"ruleSetVersion": "1.0",
"ruleGroups": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up