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

Update ExpressRouteCrossConnection Route Table Summary Record #2574

Merged
merged 4 commits into from
Mar 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
@@ -1,7 +1,7 @@
{
"parameters": {
"crossConnectionName": "CrossConnection-6e918437-5077-4ffe-b45f-0b7c0672da4b",
"resourceGroupName": "rg1",
"resourceGroupName": "CrossConnection-SiliconValley",
"api-version": "2018-02-01",
"subscriptionId": "subid"
},
Expand All @@ -10,8 +10,8 @@
"body": {
"value": [
{
"name": "AzurePrivatePeering",
"id": "/subscriptions/99c33776-9f4e-4e58-abe8-9263db1b9c6e/resourceGroups/CrossConnection-Boydton1DC/providers/Microsoft.Network/expressRouteCrossConnections/CrossConnection-9547feab-3c14-4e8b-8d0e-b5e74cd5ed7a/peerings/AzurePrivatePeering",
"name": "AzurePrivatePeering",
"id": "/subscriptions/subid/resourceGroups/CrossConnection-SiliconValley/providers/Microsoft.Network/expressRouteCrossConnections/CrossConnection-6e918437-5077-4ffe-b45f-0b7c0672da4b/peerings/AzurePrivatePeering",
"etag": "W/\"72090554-7e3b-43f2-80ad-99a9020dcb11\"",
"properties": {
"provisioningState": "Succeeded",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"parameters": {
"api-version": "2018-02-01",
"resourceGroupName": "CrossConnectionSiliconValley",
"resourceGroupName": "CrossConnection-SiliconValley",
"subscriptionId": "subid"
},
"responses": {
Expand All @@ -10,7 +10,7 @@
"value": [
{
"name": "CrossConnection-6e918437-5077-4ffe-b45f-0b7c0672da4b",
"id": "/subscriptions/subid/resourceGroups/CrossConnectionSiliconValley/providers/Microsoft.Network/expressRouteCrossConnections/CrossConnection-6e918437-5077-4ffe-b45f-0b7c0672da4b",
"id": "/subscriptions/subid/resourceGroups/CrossConnectionSilicon-Valley/providers/Microsoft.Network/expressRouteCrossConnections/CrossConnection-6e918437-5077-4ffe-b45f-0b7c0672da4b",
"type": "Microsoft.Network/expressRouteCrossConnections",
"location": "brazilsouth",
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,20 @@
"value": [
{
"neighbor": "10.6.1.112",
"v": 4 ,
"as": 65514,
"asn": 65514,
"upDown": "1d14h",
"statePfxRcd": "Active"
"stateOrPrefixesReceived": "Active"
},
{
"neighbor": "10.6.1.113",
"v": 4 ,
"as": 65514,
"asn": 65514,
"upDown": "1d14h",
"statePfxRcd": "1"
"stateOrPrefixesReceived": "1"
}
]
}
},
"202": {
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
"tags": [
"ExpressRouteCrossConnections"
],
"operationId": "ExpressRouteCrossConnections_Put",
"operationId": "ExpressRouteCrossConnections_CreateOrUpdate",
"description": "Update the specified ExpressRouteCrossConnection.",
"parameters": [
{
Expand Down Expand Up @@ -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"
}
}
},
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -661,6 +661,45 @@
}
},
"definitions": {
"ExpressRouteCrossConnectionRoutesTableSummary": {
"properties": {
"neighbor": {
"type": "string",
"description": "IP address of Neighbor router"
},
"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",
"description": "The URL to get the next set of results."
}
},
"description": "Response for ListRoutesTable associated with the Express Route Cross Connections."
},
"ExpressRouteCircuitReference": {
"properties": {
"id": {
Expand Down