Skip to content
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -1454,6 +1454,10 @@
"$ref": "#/definitions/ApplicationGatewayCustomError"
},
"description": "Custom error configurations of the HTTP listener."
},
"firewallPolicy": {
"$ref": "./network.json#/definitions/SubResource",
"description": "Reference to the FirewallPolicy resource."
}
},
"description": "Properties of HTTP listener of an application gateway."
Expand Down Expand Up @@ -1513,6 +1517,10 @@
"provisioningState": {
"$ref": "./network.json#/definitions/ProvisioningState",
"description": "The provisioning state of the path rule resource."
},
"firewallPolicy": {
"$ref": "./network.json#/definitions/SubResource",
"description": "Reference to the FirewallPolicy resource."
}
},
"description": "Properties of path rule of an application gateway."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,22 @@
"managedRules": {
"description": "Describes the managedRules structure",
"$ref": "#/definitions/ManagedRulesDefinition"
},
"httpListeners": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "./network.json#/definitions/SubResource"
},
"description": "A collection of references to application gateway http listeners."
},
"pathBasedRules": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "./network.json#/definitions/SubResource"
},
"description": "A collection of references to application gateway path rules."
}
}
},
Expand Down