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

Adding the NorthSouth API for Public Preview #4932

Merged
merged 21 commits into from
Mar 25, 2019
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
437fd70
Adding the NorthSouth API for Public Preview
Dec 16, 2018
60f423c
Fixed some JSON schema validation errors discovered by Open API HUB
Dec 16, 2018
8b757a2
Fixed bad indenetation + missing API method
Dec 16, 2018
2005269
Added missing NorthSouthResourceName parameter definition
Dec 16, 2018
6f1e5a9
Fixed typos found in CR
Dec 17, 2018
65fea15
Added EnforceTrafficHardeningRules action
Dec 17, 2018
a582baa
Fixed invalid action name in URI discovered by ARM validation tools (…
Dec 17, 2018
ff15ca3
Renamed NorthSouthHardenings to AdaptiveNetworkControls and fixed iss…
Jan 15, 2019
2f29b6f
Fixed a bad reference to ListByExtendedResourceAdaptiveNetworkControl…
Jan 15, 2019
57ef341
Changes AdaptiveNetworkControls protocol property to array instead of…
Jan 15, 2019
84f9472
Moving 'x-ms-long-running-operation' to the right location
Jan 15, 2019
33bdd8a
Fixing R2005 LongRunningResponseStatusCode error on AdaptiveNetworkCo…
Jan 16, 2019
2e6d2ab
Updating EnforceAdaptiveNetworkControlsRules_example.json with the ne…
Jan 16, 2019
03ec6bc
Merged from master
Mar 5, 2019
eb822ba
Renamed AdaptiveNetworkControls to AdaptiveNetworkHardenings due to m…
Mar 5, 2019
0b7b156
Merge branch 'Azure-master'
Mar 5, 2019
c2cdb72
Fixing an invalid reference to CloudError
Mar 5, 2019
69d5e7e
Renaming the parameters and paths so only collection resources will b…
Mar 5, 2019
b31b187
aligned all operation ids
Mar 7, 2019
408ebd9
Adding enforce request body schema
Mar 8, 2019
0efd3e5
Adding Adaptive Network Hardenings to Security readme.md
Mar 25, 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
Prev Previous commit
Next Next commit
Changes AdaptiveNetworkControls protocol property to array instead of…
… string, removed 204 status code from AdaptiveNetworkControls_Enforce
  • Loading branch information
Matan Shabtay committed Jan 15, 2019
commit 57ef341861f5c8d6e3ce8b1f10dff56c6245b02b
Original file line number Diff line number Diff line change
Expand Up @@ -1582,9 +1582,6 @@
"202": {
"description": "Accepted"
},
"204": {
"description": "No Content"
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
Expand Down Expand Up @@ -3045,14 +3042,17 @@
},
"protocols": {
"description": "The rule's transport protocols",
"type": "string",
"enum": [
"TCP",
"UDP"
],
"x-ms-enum": {
"name": "transportProtocol",
"modelAsString": true
"type": "array",
"items": {
"type": "string",
"enum": [
"TCP",
"UDP"
],
"x-ms-enum": {
"name": "transportProtocol",
"modelAsString": true
}
}
},
"ipAddresses": {
Expand Down