Skip to content

Commit

Permalink
Making rule priority a required field (#19007)
Browse files Browse the repository at this point in the history
Co-authored-by: Vinay Mundada <vimundad@microsoft.com>
  • Loading branch information
vinaymundada27 and Vinay Mundada committed May 17, 2022
1 parent 4285c2a commit b6cfe05
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2396,6 +2396,9 @@
"description": "The provisioning state of the request routing rule resource."
}
},
"required": [
"priority"
],
"description": "Properties of request routing rule of the application gateway."
},
"ApplicationGatewayRequestRoutingRule": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,7 @@
"properties": {
"provisioningState": "Succeeded",
"ruleType": "Basic",
"priority": 10,
"httpListener": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appgwhl"
},
Expand All @@ -582,6 +583,7 @@
"properties": {
"provisioningState": "Succeeded",
"ruleType": "PathBasedRouting",
"priority": 20,
"httpListener": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appgwhttplistener"
},
Expand Down Expand Up @@ -900,6 +902,7 @@
"properties": {
"provisioningState": "Succeeded",
"ruleType": "Basic",
"priority": 10,
"httpListener": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appgwhl"
},
Expand All @@ -922,6 +925,7 @@
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/requestRoutingRules/appgwPathBasedRule",
"properties": {
"provisioningState": "Succeeded",
"priority": 20,
"ruleType": "PathBasedRouting",
"httpListener": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appgwhttplistener"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@
"name": "appgwrule",
"properties": {
"ruleType": "Basic",
"priority": 10,
"httpListener": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appgwhl"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
"name": "appgwrule",
"properties": {
"ruleType": "Basic",
"priority": 10,
"httpListener": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appgwhl"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@
"properties": {
"provisioningState": "Succeeded",
"ruleType": "Basic",
"priority": 10,
"httpListener": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/AppGw/httpListeners/listener1"
},
Expand Down

0 comments on commit b6cfe05

Please sign in to comment.