Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.
Closed
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
fd3e027
Swagger was enforcing the limit as 0 to 500, It should enforce lower …
venk8 Apr 1, 2019
c99990b
Currently 0 doesnt make sense.. but this check will be enforced by NR…
venk8 Apr 1, 2019
45faff4
Merge pull request #1 from Azure/master
venk8 May 8, 2019
3f9699a
Add swagger specification for firewall policy resource (#6708)
gimotwanMSFT Jul 27, 2019
343d133
Fix typos in Network's examples (#6740)
anton-evseev Aug 1, 2019
748e335
Add missing read-only property "loadBalancerFrontendIpConfiguration" …
anton-evseev Aug 1, 2019
3e87f8a
Make patch operations async for VNGs and VNG Connections (#6695)
ritwikbasu Aug 2, 2019
b0b855e
Merge pull request #6 from Azure/network-july-release
venk8 Aug 2, 2019
9be4036
Toplevel waf work checkin
venk8 Aug 2, 2019
12d8993
reverting the change made
venk8 Aug 2, 2019
7310a97
minor fixes
venk8 Aug 5, 2019
674c390
Using the network.json/parameters/ApiVersionParameter
venk8 Aug 5, 2019
0a095c1
more changes
venk8 Aug 5, 2019
68ff603
Changes in swagger
venk8 Aug 6, 2019
22d04a8
Minor changes;
venk8 Aug 7, 2019
5ae2295
Adding firewall Policy to appGateway
venk8 Aug 8, 2019
081723f
taking the waf firewall out. .since this is taken by seperate PR
venk8 Aug 8, 2019
18ac97c
Merge branch 'master' of https://github.com/Azure/azure-rest-api-spec…
venk8 Aug 14, 2019
3b6036a
Fixing review comments
venk8 Aug 21, 2019
8995e5c
adding firewallpolicy to HttpListener
venk8 Aug 21, 2019
145ef5f
fixing model validations
venk8 Aug 21, 2019
af749ae
Update the review comments and updating the swagger
venk8 Aug 23, 2019
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 @@ -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,10 +1517,57 @@
"provisioningState": {
"type": "string",
"description": "Path rule of URL path map resource. Possible values are: 'Updating', 'Deleting', and 'Failed'."
},
"firewallPolicy": {
"$ref": "./network.json#/definitions/SubResource",
"description": "Reference to the FirewallPolicy resource."
}
},
"description": "Properties of path rule of an application gateway."
},
"ApplicationGatewayBasicRulePropertiesFormat": {
"properties": {
"paths": {
"type": "array",
"items": {
"type": "string"
},
"description": "Path rules of URL path map."
},
"firewallPolicy": {
"$ref": "./network.json#/definitions/SubResource",
"description": "Reference to the FirewallPolicy resource."
}
},
"description": "Properties of basic rule of an application gateway."
},
"ApplicationGatewayBasicRule": {
"properties": {
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/ApplicationGatewayBasicRulePropertiesFormat",
"description": "Properties of the application gateway basic rule."
},
"name": {
"type": "string",
"description": "Name of the path rule that is unique within an Application Gateway."
},
"etag": {
"type": "string",
"description": "A unique read-only string that changes whenever the resource is updated."
},
"type": {
"type": "string",
"description": "Type of the resource."
}
},
"allOf": [
{
"$ref": "./network.json#/definitions/SubResource"
}
],
"description": "Basic rule of URL path map of an application gateway."
},
"ApplicationGatewayPathRule": {
"properties": {
"properties": {
Expand Down Expand Up @@ -1681,6 +1732,13 @@
"$ref": "./network.json#/definitions/SubResource",
"description": "Redirect configuration resource of the application gateway."
},
"basicRules": {
"type": "array",
"items": {
"$ref": "#/definitions/ApplicationGatewayBasicRule"
},
"description": "Array of Basic Rules"
},
"provisioningState": {
"type": "string",
"description": "Provisioning state of the request routing rule resource. Possible values are: 'Updating', 'Deleting', and 'Failed'."
Expand Down