-
Notifications
You must be signed in to change notification settings - Fork 5.9k
NetworkWatcher: Added new parameters to QueryConnectionMonitorResult and ConnectivityCheckRequest #2763
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
Changes from 7 commits
a71c92f
534e121
1fb0844
6a2b7a0
a0cdb78
21568d4
e374ea2
72acce7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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": { | ||
|
Contributor
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. is hTTP case expected?
Member
Author
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. Fixed |
||
| "$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": { | ||
|
Contributor
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": { | ||
|
|
||
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