Skip to content

Commit 0e524f6

Browse files
Merge pull request #286936 from duongau/ercrossconnect
ExpressRoute - Cross Connection API Development (remove PII)
2 parents 21534e0 + 09f3ae7 commit 0e524f6

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

articles/expressroute/cross-connections-api-development.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Once you receive the ExpressRoute service key from the target customer, follow t
126126
},
127127
{
128128
"name": "9ee700ad-50b2-4b98-a63a-4e52f855ac24",
129-
"id": "/subscriptions/8030cec9-2c0c-4361-9949-1655c6e4b0fa/resourceGroups/CrossConnection-EUAPTest/providers/Microsoft.Network/expressRouteCrossConnections/<ProviderManagementSubscription>",
129+
"id": "/subscriptions/00001111-aaaa-2222-bbbb-3333cccc4444/resourceGroups/CrossConnection-EUAPTest/providers/Microsoft.Network/expressRouteCrossConnections/<ProviderManagementSubscription>",
130130
"etag": "W/\"f07a267f-4a5c-4538-83e5-de1fcb183801\"",
131131
"type": "Microsoft.Network/expressRouteCrossConnections",
132132
"location": "eastus2euap",
@@ -218,7 +218,7 @@ Once you receive the ExpressRoute service key from the target customer, follow t
218218
Pragma: no-cache
219219
Retry-After: 10
220220
x-ms-request-id: 0a8d458b-8fe3-44e6-89c9-1b156b946693
221-
Azure-AsyncOperation: https://management.azure.com/subscriptions/8030cec9-2c0c-4361-9949-1655c6e4b0fa/providers/Microsoft.Network/locations/eastus2euap/operations/0a8d458b-8fe3-44e6-89c9-1b156b946693?api-version=2018-02-01
221+
Azure-AsyncOperation: https://management.azure.com/subscriptions/00001111-aaaa-2222-bbbb-3333cccc4444/providers/Microsoft.Network/locations/eastus2euap/operations/0a8d458b-8fe3-44e6-89c9-1b156b946693?api-version=2018-02-01
222222
Strict-Transport-Security: max-age=31536000; includeSubDomains
223223
Cache-Control: no-cache
224224
Server: Microsoft-HTTPAPI/2.0; Microsoft-HTTPAPI/2.0
@@ -249,7 +249,7 @@ Once you receive the ExpressRoute service key from the target customer, follow t
249249
}
250250
}
251251
252-
C:\Users\kaanan\Documents\Expressroute\Partner APIs\ARMClient-master\ARMClient-master>armclient get https://management.azure.com/subscriptions/<ProviderManagementSubscription>/providers/Microsoft.Network/locations/eastus2euap/operations/0a8d458b-8fe3-44e6-89c9-1b156b946693?api-version=2018-02-01
252+
C:\Users\Admin\Documents\Expressroute\Partner APIs\ARMClient-master\ARMClient-master>armclient get https://management.azure.com/subscriptions/<ProviderManagementSubscription>/providers/Microsoft.Network/locations/eastus2euap/operations/0a8d458b-8fe3-44e6-89c9-1b156b946693?api-version=2018-02-01
253253
{
254254
"status": "Succeeded"
255255
}
@@ -329,12 +329,12 @@ Once you receive the ExpressRoute service key from the target customer, follow t
329329
"properties": {
330330
"peeringType": "MicrosoftPeering",
331331
"peerASN": 900,
332-
"primaryPeerAddressPrefix": "123.0.0.0/30",
333-
"secondaryPeerAddressPrefix": "123.0.0.4/30",
332+
"primaryPeerAddressPrefix": "203.0.113.0/30",
333+
"secondaryPeerAddressPrefix": "203.0.113.4/30",
334334
"vlanId": 300,
335335
"microsoftPeeringConfig": {
336336
"advertisedPublicPrefixes": [
337-
"123.1.0.0/24"
337+
"203.0.113.128/25"
338338
],
339339
"customerASN": 45,
340340
"routingRegistryName": "ARIN"
@@ -348,7 +348,7 @@ Once you receive the ExpressRoute service key from the target customer, follow t
348348
Pragma: no-cache
349349
Retry-After: 10
350350
x-ms-request-id: e3aa0bbd-4709-4092-a1f1-aa78080929d0
351-
Azure-AsyncOperation: https://management.azure.com/subscriptions/8030cec9-2c0c-4361-9949-1655c6e4b0fa/providers/Microsoft.Network/locations/eastus2euap/operations/e3aa0bbd-4709-4092-a1f1-aa78080929d0?api-version=2018-02-01
351+
Azure-AsyncOperation: https://management.azure.com/subscriptions/00001111-aaaa-2222-bbbb-3333cccc4444/providers/Microsoft.Network/locations/eastus2euap/operations/e3aa0bbd-4709-4092-a1f1-aa78080929d0?api-version=2018-02-01
352352
Strict-Transport-Security: max-age=31536000; includeSubDomains
353353
Cache-Control: no-cache
354354
Server: Microsoft-HTTPAPI/2.0; Microsoft-HTTPAPI/2.0
@@ -366,14 +366,14 @@ Once you receive the ExpressRoute service key from the target customer, follow t
366366
"peeringType": "MicrosoftPeering",
367367
"azureASN": 0,
368368
"peerASN": 900,
369-
"primaryPeerAddressPrefix": "123.0.0.0/30",
370-
"secondaryPeerAddressPrefix": "123.0.0.4/30",
369+
"primaryPeerAddressPrefix": "203.0.113.0/30",
370+
"secondaryPeerAddressPrefix": "203.0.113.4/30",
371371
"state": "Disabled",
372372
"vlanId": 300,
373373
"lastModifiedBy": "",
374374
"microsoftPeeringConfig": {
375375
"advertisedPublicPrefixes": [
376-
"123.1.0.0/24"
376+
"203.0.113.128/25"
377377
],
378378
"advertisedPublicPrefixesState": "NotConfigured",
379379
"customerASN": 45,
@@ -383,7 +383,7 @@ Once you receive the ExpressRoute service key from the target customer, follow t
383383
}
384384
}
385385
386-
C:\Users\kaanan\Documents\Expressroute\Partner APIs\ARMClient-master\ARMClient-master>armclient get https://management.azure.com/subscriptions/<ProviderManagementSubscription>/providers/Microsoft.Network/locations/eastus2euap/operations/e3aa0bbd-4709-4092-a1f1-aa78080929d0?api-version=2018-02-01
386+
C:\Users\Admin\Documents\Expressroute\Partner APIs\ARMClient-master\ARMClient-master>armclient get https://management.azure.com/subscriptions/<ProviderManagementSubscription>/providers/Microsoft.Network/locations/eastus2euap/operations/e3aa0bbd-4709-4092-a1f1-aa78080929d0?api-version=2018-02-01
387387
{
388388
"status": "Succeeded"
389389
}

0 commit comments

Comments
 (0)