-
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
Update ExpressRouteCrossConnection Route Table Summary Record #2574
Merged
dsgouda
merged 4 commits into
Azure:Network-2018-02-01
from
gimotwanMSFT:ExpressRouteCrossConnectionSync
Mar 5, 2018
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
7a9e940
Update CrossConnection Route Table Summary record
gimotwanMSFT b9a1c90
Address review comments
gimotwanMSFT d91cff5
Update prefixesReceived to stateOrPrefixesReceived
gimotwanMSFT 21e87bb
address review comments - add meaningful description for Neighbour
gimotwanMSFT 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
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 |
---|---|---|
|
@@ -156,7 +156,7 @@ | |
"tags": [ | ||
"ExpressRouteCrossConnections" | ||
], | ||
"operationId": "ExpressRouteCrossConnections_Put", | ||
"operationId": "ExpressRouteCrossConnections_CreateOrUpdate", | ||
"description": "Update the specified ExpressRouteCrossConnection.", | ||
"parameters": [ | ||
{ | ||
|
@@ -455,13 +455,13 @@ | |
"200": { | ||
"description": "Update successful. The operation returns the resulting ExpressRouteCrossConnectionPeering resource.", | ||
"schema": { | ||
"$ref": "#/definitions/ExpressRouteCircuitPeering" | ||
"$ref": "./expressRouteCircuit.json#/definitions/ExpressRouteCircuitPeering" | ||
} | ||
}, | ||
"201": { | ||
"description": "Create successful. The operation returns the resulting ExpressRouteCrossConnectionPeering resource.", | ||
"schema": { | ||
"$ref": "#/definitions/ExpressRouteCircuitPeering" | ||
"$ref": "./expressRouteCircuit.json#/definitions/ExpressRouteCircuitPeering" | ||
} | ||
} | ||
}, | ||
|
@@ -582,7 +582,7 @@ | |
"200": { | ||
"description": "Request successful. The operation returns the resulting ExpressRouteCrossConnectionsRouteTableSummary resource.", | ||
"schema": { | ||
"$ref": "./expressRouteCircuit.json#/definitions/ExpressRouteCircuitsRoutesTableSummaryListResult" | ||
"$ref": "#/definitions/ExpressRouteCrossConnectionsRoutesTableSummaryListResult" | ||
} | ||
}, | ||
"202": { | ||
|
@@ -661,6 +661,45 @@ | |
} | ||
}, | ||
"definitions": { | ||
"ExpressRouteCrossConnectionRoutesTableSummary": { | ||
"properties": { | ||
"neighbor": { | ||
"type": "string", | ||
"description": "Neighbor" | ||
}, | ||
"asn": { | ||
"type": "integer", | ||
"format": "int32", | ||
"description": "Autonomous system number." | ||
}, | ||
"upDown": { | ||
"type": "string", | ||
"description": "The length of time that the BGP session has been in the Established state, or the current status if not in the Established state." | ||
}, | ||
"stateOrPrefixesReceived": { | ||
"type": "string", | ||
"description": "Current state of the BGP session, and the number of prefixes that have been received from a neighbor or peer group." | ||
} | ||
}, | ||
"description": "The routes table associated with the ExpressRouteCircuit." | ||
}, | ||
"ExpressRouteCrossConnectionsRoutesTableSummaryListResult": { | ||
"properties": { | ||
"value": { | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/definitions/ExpressRouteCrossConnectionRoutesTableSummary" | ||
}, | ||
"description": "A list of the routes table." | ||
}, | ||
"nextLink": { | ||
"readOnly": true, | ||
"type": "string", | ||
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. Should be marked as readonly |
||
"description": "The URL to get the next set of results." | ||
} | ||
}, | ||
"description": "Response for ListRoutesTable associated with the Express Route Cross Connections." | ||
}, | ||
"ExpressRouteCircuitReference": { | ||
"properties": { | ||
"id": { | ||
|
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.
Add a more meaningful description