-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
NetworkWatcher: Added new parameters to QueryConnectionMonitorResult and ConnectivityCheckRequest #2763
Merged
Merged
NetworkWatcher: Added new parameters to QueryConnectionMonitorResult and ConnectivityCheckRequest #2763
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
a71c92f
Updated examples for network watcher
irrogozh 534e121
Updated api version in network watcher swagger and examples
irrogozh 1fb0844
Fixed Linter errors
irrogozh 6a2b7a0
Fixed Linter errors: iteration 2
irrogozh a0cdb78
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
irrogozh 21568d4
NetworkWatcher: Added new parameters to QueryConnectionMonitorResult …
irrogozh e374ea2
NetworkWatcher: Fixed typo
irrogozh 72acce7
Fixed casing for HTTPConfiguration property
irrogozh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1697,7 +1697,7 @@ | |
"UDP" | ||
], | ||
"x-ms-enum": { | ||
"name": "Protocol", | ||
"name": "IpFlowProtocol", | ||
"modelAsString": true | ||
}, | ||
"description": "Protocol to be verified on." | ||
|
@@ -2307,6 +2307,23 @@ | |
}, | ||
"destination": { | ||
"$ref": "#/definitions/ConnectivityDestination" | ||
}, | ||
"protocol": { | ||
"type": "string", | ||
"description": "Network protocol.", | ||
"enum": [ | ||
"Tcp", | ||
"Http", | ||
"Https", | ||
"Icmp" | ||
], | ||
"x-ms-enum": { | ||
"name": "Protocol", | ||
"modelAsString": true | ||
} | ||
}, | ||
"protocolConfiguration": { | ||
"$ref": "#/definitions/ProtocolConfiguration" | ||
} | ||
} | ||
}, | ||
|
@@ -2504,6 +2521,57 @@ | |
"type": "string" | ||
} | ||
}, | ||
"ProtocolConfiguration": { | ||
"description": "Configuration of the protocol.", | ||
"properties": { | ||
"HTTPConfiguration": { | ||
"$ref": "#/definitions/HTTPConfiguration" | ||
} | ||
} | ||
}, | ||
"HTTPConfiguration": { | ||
"properties": { | ||
"method": { | ||
"type": "string", | ||
"description": "HTTP method.", | ||
"enum": [ | ||
"Get" | ||
], | ||
"x-ms-enum": { | ||
"name": "HTTPMethod", | ||
"modelAsString": true | ||
} | ||
}, | ||
"headers": { | ||
"type": "array", | ||
"description": "List of HTTP headers.", | ||
"items": { | ||
"$ref": "#/definitions/HTTPHeader" | ||
} | ||
}, | ||
"validStatusCodes": { | ||
"type": "array", | ||
"items": { | ||
"type": "integer" | ||
}, | ||
"description": "Valid status codes." | ||
} | ||
}, | ||
"description": "HTTP configuration of the connectivity check." | ||
}, | ||
"HTTPHeader": { | ||
"properties": { | ||
"name": { | ||
"type": "string", | ||
"description": "The name in HTTP header." | ||
}, | ||
"value": { | ||
"type": "string", | ||
"description": "The value in HTTP header." | ||
} | ||
}, | ||
"description": "Describes the HTTP header." | ||
}, | ||
"AzureReachabilityReportParameters": { | ||
"properties": { | ||
"providerLocation": { | ||
|
@@ -2890,6 +2958,19 @@ | |
}, | ||
"ConnectionMonitorQueryResult": { | ||
"properties": { | ||
"sourceStatus": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. breaking change 2 (constructor signature) |
||
"type": "string", | ||
"enum": [ | ||
"Uknown", | ||
"Active", | ||
"Inactive" | ||
], | ||
"x-ms-enum": { | ||
"name": "ConnectionMonitorSourceStatus", | ||
"modelAsString": true | ||
}, | ||
"description": "Status of connection monitor source." | ||
}, | ||
"states": { | ||
"type": "array", | ||
"items": { | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
breaking change 1