Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Added priority field in the request routing rule
  • Loading branch information
Anshul Agarwal committed Sep 5, 2019
commit 0ce268918989120d81d0cc68f308265e5a2e7c21
Original file line number Diff line number Diff line change
Expand Up @@ -1657,6 +1657,11 @@
"modelAsString": true
}
},
"priority": {
"type": "integer",
"format": "int32",
"description": "Priority of the request routing rule."
},
"backendAddressPool": {
"$ref": "./network.json#/definitions/SubResource",
"description": "Backend address pool resource of the application gateway."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@
"name": "appgwrule",
"properties": {
"ruleType": "Basic",
"priority": 10,
"httpListener": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appgwhl"
},
Expand All @@ -196,6 +197,7 @@
"name": "appgwPathBasedRule",
"properties": {
"ruleType": "PathBasedRouting",
"priority": 20,
"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 @@ -178,6 +178,7 @@
"properties": {
"provisioningState": "Succeeded",
"ruleType": "Basic",
"priority": 10,
"httpListener": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appgwhl"
},
Expand All @@ -198,6 +199,7 @@
"properties": {
"provisioningState": "Succeeded",
"ruleType": "PathBasedRouting",
"priority": 20,
"httpListener": {
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appgwhttplistener"
},
Expand Down