Skip to content

Commit

Permalink
Update ExpressRouteCrossConnection Route Table Summary Record (#2574)
Browse files Browse the repository at this point in the history
* Update CrossConnection Route Table Summary record
  • Loading branch information
gimotwanMSFT authored and dsgouda committed Mar 5, 2018
1 parent fb621de commit b91f5af
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 16 deletions.
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

0 comments on commit b91f5af

Please sign in to comment.