From c2b7553e990d5dd2bc0d62ab5517ee3cbb2a247b Mon Sep 17 00:00:00 2001 From: kai ru <69238381+kairu-ms@users.noreply.github.com> Date: Thu, 25 Mar 2021 15:54:04 +0800 Subject: [PATCH 1/6] add miss command for az network express-route --- .../cli/command_modules/network/_help.py | 27 +++++++++++++++++++ .../cli/command_modules/network/_params.py | 4 +++ .../cli/command_modules/network/commands.py | 5 +++- .../cli/command_modules/network/custom.py | 9 ------- .../test_network_commands.py | 1 + .../tests/latest/test_network_commands.py | 5 ++++ 6 files changed, 41 insertions(+), 10 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/network/_help.py b/src/azure-cli/azure/cli/command_modules/network/_help.py index 20f8ab254a7..4289fc85aa7 100644 --- a/src/azure-cli/azure/cli/command_modules/network/_help.py +++ b/src/azure-cli/azure/cli/command_modules/network/_help.py @@ -2728,6 +2728,15 @@ --path primary --peering-name AzurePrivatePeering """ +helps['network express-route list-route-tables-summary'] = """ +type: command +short-summary: Show the current routing table summary of an ExpressRoute circuit peering. +examples: + - name: List Route Table Summary + text: | + az network express-route list-route-tables-summary -g MyResourceGroup -n MyCircuit --path primary --peering-name AzurePrivatePeering +""" + helps['network express-route list-service-providers'] = """ type: command short-summary: List available ExpressRoute service providers. @@ -2772,6 +2781,15 @@ short-summary: Get the details of an ExpressRoute circuit connection. """ +helps['network express-route peering connection list'] = """ +type: command +short-summary: List all global reach connections associated with a private peering in an express route circuit. +examples: + - name: List ExpressRouteCircuit Connection + text: | + az network express-route peering connection list --circuit-name MyCircuit --peering-name MyPeering --resource-group MyResourceGroup +""" + helps['network express-route peering create'] = """ type: command short-summary: Create peering settings for an ExpressRoute circuit. @@ -2841,6 +2859,15 @@ crafted: true """ +helps['network express-route peering get-stats'] = """ +type: command +short-summary: Get all traffic stats of an ExpressRoute peering. +examples: + - name: Get ExpressRoute Circuit Peering Traffic Stats + text: | + az network express-route peering get-stats --circuit-name MyCircuit --name MyPeering --resource-group MyResourceGroup +""" + helps['network express-route port'] = """ type: group short-summary: Manage ExpressRoute ports. diff --git a/src/azure-cli/azure/cli/command_modules/network/_params.py b/src/azure-cli/azure/cli/command_modules/network/_params.py index b6b04944b98..ec33f14d5b8 100644 --- a/src/azure-cli/azure/cli/command_modules/network/_params.py +++ b/src/azure-cli/azure/cli/command_modules/network/_params.py @@ -766,6 +766,10 @@ def load_arguments(self, _): c.argument('connection_name', options_list=['--name', '-n'], help='Name of the peering connection.', id_part='child_name_2') c.argument('peer_circuit', help='Name or ID of the peer ExpressRoute circuit.', validator=validate_er_peer_circuit) + with self.argument_context('network express-route peering connection list') as c: + c.argument('circuit_name', id_part=None) + c.argument('peering_name', id_part=None) + with self.argument_context('network express-route peering peer-connection') as c: c.argument('circuit_name', circuit_name_type, id_part=None) c.argument('peering_name', options_list=['--peering-name'], help='Name of BGP peering (i.e. AzurePrivatePeering).', id_part=None) diff --git a/src/azure-cli/azure/cli/command_modules/network/commands.py b/src/azure-cli/azure/cli/command_modules/network/commands.py index 09185536e84..f3d2e78f1e9 100644 --- a/src/azure-cli/azure/cli/command_modules/network/commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/commands.py @@ -749,7 +749,8 @@ def _make_singular(value): g.show_command('show', 'get') g.command('get-stats', 'get_stats') g.command('list-arp-tables', 'begin_list_arp_table') - g.custom_command('list-route-tables', 'list_express_route_route_tables') + g.command('list-route-tables', 'begin_list_routes_table') + g.command('list-route-tables-summary', 'begin_list_routes_table_summary') g.custom_command('create', 'create_express_route', supports_no_wait=True) g.custom_command('list', 'list_express_route_circuits') g.command('list-service-providers', 'list', command_type=network_ersp_sdk) @@ -782,12 +783,14 @@ def _make_singular(value): g.command('delete', 'begin_delete') g.show_command('show', 'get') g.command('list', 'list') + g.command('get-stats', 'get_peering_stats', command_type=network_er_sdk) g.generic_update_command('update', setter_name='begin_create_or_update', setter_arg_name='peering_parameters', custom_func_name='update_express_route_peering') with self.command_group('network express-route peering connection', network_erconn_sdk) as g: g.custom_command('create', 'create_express_route_peering_connection') g.command('delete', 'begin_delete') g.show_command('show') + g.command('list', 'list') with self.command_group('network express-route peering peer-connection', network_perconn_sdk, is_preview=True) as g: g.show_command('show', is_preview=True) diff --git a/src/azure-cli/azure/cli/command_modules/network/custom.py b/src/azure-cli/azure/cli/command_modules/network/custom.py index e9b448e09a7..448f67d2258 100644 --- a/src/azure-cli/azure/cli/command_modules/network/custom.py +++ b/src/azure-cli/azure/cli/command_modules/network/custom.py @@ -2576,15 +2576,6 @@ def update_express_route(instance, cmd, bandwidth_in_mbps=None, peering_location return instance -def list_express_route_route_tables(cmd, resource_group_name, circuit_name, peering_name, device_path): - from azure.cli.core.commands import LongRunningOperation - - client = network_client_factory(cmd.cli_ctx).express_route_circuits - - return LongRunningOperation(cmd.cli_ctx)( - client.begin_list_routes_table(resource_group_name, circuit_name, peering_name, device_path)).value - - def create_express_route_peering_connection(cmd, resource_group_name, circuit_name, peering_name, connection_name, peer_circuit, address_prefix, authorization_key=None): client = network_client_factory(cmd.cli_ctx).express_route_circuit_connections diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py b/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py index 35fc38f19a5..d07145dceac 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py @@ -795,6 +795,7 @@ def test_network_express_route(self, resource_group): # so we will just verify that the command makes it through the SDK without error. self.cmd('network express-route list-arp-tables --resource-group {rg} --name {er} --peering-name azureprivatepeering --path primary') self.cmd('network express-route list-route-tables --resource-group {rg} --name {er} --peering-name azureprivatepeering --path primary') + self.cmd('network express-route list-route-tables-summery --resource-group {rg} --name {er} --peering-name azureprivatepeering --path primary') self.cmd('network express-route delete --resource-group {rg} --name {er}') # Expecting no results as we just deleted the only express route in the resource group diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py index 3c18a76e6c4..b9aec42b0a3 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py @@ -2056,6 +2056,7 @@ def test_network_express_route(self, resource_group): # so we will just verify that the command makes it through the SDK without error. self.cmd('network express-route list-arp-tables --resource-group {rg} --name {er} --peering-name azureprivatepeering --path primary') self.cmd('network express-route list-route-tables --resource-group {rg} --name {er} --peering-name azureprivatepeering --path primary') + self.cmd('network express-route list-route-tables-summary --resource-group {rg} --name {er} --peering-name azureprivatepeering --path primary') self.cmd('network express-route delete --resource-group {rg} --name {er}') # Expecting no results as we just deleted the only express route in the resource group @@ -2173,6 +2174,9 @@ def test_network_express_route_ipv6_peering(self, resource_group): self.check('ipv6PeeringConfig.microsoftPeeringConfig.customerAsn', 100001), self.check('ipv6PeeringConfig.state', 'Enabled') ]) + self.cmd('network express-route peering get-stats -g {rg} --circuit-name {er} -n MicrosoftPeering', checks=[ + self.check('type(@)', 'object'), + ]) @ResourceGroupPreparer(name_prefix='cli_test_express_route_ipv6_peering2', location='eastus') def test_network_express_route_ipv6_peering2(self, resource_group): @@ -2209,6 +2213,7 @@ def test_network_express_route_global_reach(self, resource_group): with self.assertRaisesRegexp(HttpResponseError, 'is Not Provisioned'): self.cmd('network express-route peering connection create -g {rg} --circuit-name {er1} --peering-name AzurePrivatePeering -n {conn12} --peer-circuit {er2} --address-prefix 104.0.0.0/29') self.cmd('network express-route peering connection show -g {rg} --circuit-name {er1} --peering-name AzurePrivatePeering -n {conn12}') + self.cmd('network express-route peering connection list -g {rg} --circuit-name {er1} --peering-name AzurePrivatePeering') self.cmd('network express-route peering connection delete -g {rg} --circuit-name {er1} --peering-name AzurePrivatePeering -n {conn12}') @record_only() # record_only as the express route is extremely expensive, contact service team for an available ER From 3c8184387f19fb185c85603b3f1111e209f35ca6 Mon Sep 17 00:00:00 2001 From: kai ru <69238381+kairu-ms@users.noreply.github.com> Date: Thu, 25 Mar 2021 16:12:09 +0800 Subject: [PATCH 2/6] update recording files --- .../test_network_express_route.yaml | 710 ++++++++++-------- ...st_network_express_route_global_reach.yaml | 295 ++++---- ...st_network_express_route_ipv6_peering.yaml | 188 +++-- ...network_express_route_peer_connection.yaml | 203 ++--- .../tests/latest/test_network_commands.py | 3 + 5 files changed, 736 insertions(+), 663 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route.yaml index d4bfb17b4a9..77356e79b5b 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route.yaml @@ -11,7 +11,7 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/expressRouteServiceProviders?api-version=2020-11-01 response: @@ -374,6 +374,22 @@ interactions: \"5Gbps\",\r\n \"valueInMbps\": 5000\r\n },\r\n {\r\n \ \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": + \"KDDI TEST\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/expressRouteServiceProviders/\",\r\n + \ \"type\": \"Microsoft.Network/expressRouteServiceProviders\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringLocations\": + [\r\n \"Denver Test\",\r\n \"London Test\",\r\n \"Sao + Paulo Test\"\r\n ],\r\n \"bandwidthsOffered\": [\r\n {\r\n + \ \"offerName\": \"50Mbps\",\r\n \"valueInMbps\": 50\r\n + \ },\r\n {\r\n \"offerName\": \"100Mbps\",\r\n + \ \"valueInMbps\": 100\r\n },\r\n {\r\n \"offerName\": + \"200Mbps\",\r\n \"valueInMbps\": 200\r\n },\r\n {\r\n + \ \"offerName\": \"500Mbps\",\r\n \"valueInMbps\": 500\r\n + \ },\r\n {\r\n \"offerName\": \"1Gbps\",\r\n \"valueInMbps\": + 1000\r\n },\r\n {\r\n \"offerName\": \"2Gbps\",\r\n + \ \"valueInMbps\": 2000\r\n },\r\n {\r\n \"offerName\": + \"5Gbps\",\r\n \"valueInMbps\": 5000\r\n },\r\n {\r\n + \ \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n + \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"KINX Test\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/expressRouteServiceProviders/\",\r\n \ \"type\": \"Microsoft.Network/expressRouteServiceProviders\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringLocations\": @@ -484,6 +500,22 @@ interactions: \"5Gbps\",\r\n \"valueInMbps\": 5000\r\n },\r\n {\r\n \ \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": + \"NTT TEST ARM\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/expressRouteServiceProviders/\",\r\n + \ \"type\": \"Microsoft.Network/expressRouteServiceProviders\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringLocations\": + [\r\n \"Denver Test\",\r\n \"London Test\",\r\n \"Sao + Paulo Test\"\r\n ],\r\n \"bandwidthsOffered\": [\r\n {\r\n + \ \"offerName\": \"50Mbps\",\r\n \"valueInMbps\": 50\r\n + \ },\r\n {\r\n \"offerName\": \"100Mbps\",\r\n + \ \"valueInMbps\": 100\r\n },\r\n {\r\n \"offerName\": + \"200Mbps\",\r\n \"valueInMbps\": 200\r\n },\r\n {\r\n + \ \"offerName\": \"500Mbps\",\r\n \"valueInMbps\": 500\r\n + \ },\r\n {\r\n \"offerName\": \"1Gbps\",\r\n \"valueInMbps\": + 1000\r\n },\r\n {\r\n \"offerName\": \"2Gbps\",\r\n + \ \"valueInMbps\": 2000\r\n },\r\n {\r\n \"offerName\": + \"5Gbps\",\r\n \"valueInMbps\": 5000\r\n },\r\n {\r\n + \ \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n + \ }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"Orange Test\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/expressRouteServiceProviders/\",\r\n \ \"type\": \"Microsoft.Network/expressRouteServiceProviders\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringLocations\": @@ -798,11 +830,11 @@ interactions: cache-control: - no-cache content-length: - - '59484' + - '61923' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:46:37 GMT + - Thu, 25 Mar 2021 08:08:17 GMT expires: - '-1' pragma: @@ -819,7 +851,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 085ec50a-6714-475f-9ade-abfedf20f8e2 + - eb19c8d6-391d-4b11-8a96-be7c122c4a85 status: code: 200 message: OK @@ -837,15 +869,15 @@ interactions: ParameterSetName: - -g -n --bandwidth --provider --peering-location --sku-tier --tags User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_express_route000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001","name":"cli_test_express_route000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T05:46:34Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001","name":"cli_test_express_route000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-25T08:08:06Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -854,7 +886,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:46:38 GMT + - Thu, 25 Mar 2021 08:08:18 GMT expires: - '-1' pragma: @@ -889,16 +921,16 @@ interactions: ParameterSetName: - -g -n --bandwidth --provider --peering-location --sku-tier --tags User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\",\r\n - \ \"etag\": \"W/\\\"8738a8f1-fee7-4257-b719-cd771ee9e4e9\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"91187778-adbb-4ca4-ba68-3465626f16f9\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": - \"Updating\",\r\n \"resourceGuid\": \"3ea1b558-22d5-4ffe-84ae-af37d3889902\",\r\n + \"Updating\",\r\n \"resourceGuid\": \"63422daa-0c6d-4d64-99f8-beff511614bb\",\r\n \ \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Ibiza Test Provider\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": @@ -911,7 +943,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9abbbd8e-0f07-45e5-9b59-445116270162?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fe73abca-e6fe-4bdd-8a55-e422af838c03?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -919,7 +951,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:46:45 GMT + - Thu, 25 Mar 2021 08:08:24 GMT expires: - '-1' pragma: @@ -932,9 +964,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 28be87a0-d716-4be0-affd-8b4fe79c3e7b + - 8ccd6c79-b730-4346-8849-7c04f70ba4bb x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1198' status: code: 201 message: Created @@ -952,9 +984,9 @@ interactions: ParameterSetName: - -g -n --bandwidth --provider --peering-location --sku-tier --tags User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9abbbd8e-0f07-45e5-9b59-445116270162?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fe73abca-e6fe-4bdd-8a55-e422af838c03?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -966,7 +998,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:46:56 GMT + - Thu, 25 Mar 2021 08:08:35 GMT expires: - '-1' pragma: @@ -983,7 +1015,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eb12f118-26ad-42f2-889b-1f0ed112e840 + - c2950598-2a23-47dc-8f1d-e97b10122f36 status: code: 200 message: OK @@ -1001,9 +1033,9 @@ interactions: ParameterSetName: - -g -n --bandwidth --provider --peering-location --sku-tier --tags User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9abbbd8e-0f07-45e5-9b59-445116270162?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fe73abca-e6fe-4bdd-8a55-e422af838c03?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1015,7 +1047,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:06 GMT + - Thu, 25 Mar 2021 08:08:45 GMT expires: - '-1' pragma: @@ -1032,7 +1064,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e6be1358-690d-45b6-9748-8505f208baf4 + - 0e093320-e143-4ccd-ae05-0053448ee0db status: code: 200 message: OK @@ -1050,23 +1082,23 @@ interactions: ParameterSetName: - -g -n --bandwidth --provider --peering-location --sku-tier --tags User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\",\r\n - \ \"etag\": \"W/\\\"4443072b-67d9-4a9d-808d-1e285609d0a5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"29d5e993-201b-4f45-848d-f4911838660f\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"3ea1b558-22d5-4ffe-84ae-af37d3889902\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"63422daa-0c6d-4d64-99f8-beff511614bb\",\r\n \ \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Ibiza Test Provider\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\": - \"\",\r\n \"serviceKey\": \"b8dab07d-1c71-4354-b553-14c4607e36ef\",\r\n + \"\",\r\n \"serviceKey\": \"f66c68da-f500-45bb-8a06-2dfed6a6e40d\",\r\n \ \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"allowGlobalReach\": - false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 6\r\n },\r\n + false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 4\r\n },\r\n \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \ \"family\": \"MeteredData\"\r\n }\r\n}" headers: @@ -1077,7 +1109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:07 GMT + - Thu, 25 Mar 2021 08:08:46 GMT expires: - '-1' pragma: @@ -1094,7 +1126,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 26067e79-70a2-4493-aece-b23d30e46659 + - 25e80287-c093-45dc-be53-9f45d46f13b2 status: code: 200 message: OK @@ -1110,112 +1142,40 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/expressRouteCircuits?api-version=2020-11-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"er3\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/expressRouteCircuits/er3\",\r\n - \ \"etag\": \"W/\\\"69855109-daee-43b6-acfa-3e3405d2934f\\\"\",\r\n \"type\": - \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n - \ \"resourceGuid\": \"3906963b-2830-47a2-a3f0-572f3359d04b\",\r\n \"peerings\": - [\r\n {\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/expressRouteCircuits/er3/peerings/AzurePrivatePeering\",\r\n - \ \"etag\": \"W/\\\"69855109-daee-43b6-acfa-3e3405d2934f\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n - \ \"peeringType\": \"AzurePrivatePeering\",\r\n \"azureASN\": - 12076,\r\n \"peerASN\": 100,\r\n \"primaryPeerAddressPrefix\": - \"192.168.1.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"192.168.2.0/30\",\r\n - \ \"primaryAzurePort\": \"A51-TEST-06GMR-CIS-1-PRI-C\",\r\n \"secondaryAzurePort\": - \"A51-TEST-06GMR-CIS-2-SEC-C\",\r\n \"state\": \"Enabled\",\r\n - \ \"vlanId\": 100,\r\n \"gatewayManagerEtag\": \"\",\r\n - \ \"lastModifiedBy\": \"Customer\",\r\n \"microsoftPeeringConfig\": - {\r\n \"advertisedPublicPrefixes\": [],\r\n \"advertisedCommunities\": - [],\r\n \"advertisedPublicPrefixesState\": \"NotConfigured\",\r\n - \ \"customerASN\": 0,\r\n \"legacyMode\": 0,\r\n - \ \"routingRegistryName\": \"NONE\"\r\n },\r\n - \ \"connections\": [\r\n {\r\n \"name\": - \"xz-vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/expressRouteCircuits/er3/peerings/AzurePrivatePeering/connections/xz-vnet\",\r\n - \ \"etag\": \"W/\\\"69855109-daee-43b6-acfa-3e3405d2934f\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": - \"Deleting\",\r\n \"expressRouteCircuitPeering\": {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/expressRouteCircuits/er3/peerings/AzurePrivatePeering\"\r\n - \ },\r\n \"peerExpressRouteCircuitPeering\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xz-express-route-test/providers/Microsoft.Network/expressRouteCircuits/er3/peerings/AzurePrivatePeering\"\r\n - \ },\r\n \"addressPrefix\": \"10.0.0.0/29\",\r\n - \ \"authorizationKey\": \"308201E906092A864886F70D010703A08201DA308201D6020100318201823082017E0201003066304F310B3009060355040613025553311E301C060355040A13154D6963726F736F667420436F72706F726174696F6E3120301E060355040313174D6963726F736F66742052534120544C5320434120303202137F0001C39288E951B66B24711300000001C392300D06092A864886F70D0101010500048201009DDFF1B74A2DFCA567E20CE8FC2A76E678E2E039BCDDAE030CBBF107076C0AB0F1C31AECEF79D18ABFB9DE4AE9D4C92CD075E247ECC516534BB1029B27B5742DA819040DDA090DC40CE3C3286BB22EEFF2DECC3C930155288EE3A5B4C5D38E6C550B55AB3A0FFF596AA00115CD4D7E7D8E5EFEF34379DA292F8C3B91503AFB90388E0D81D31D8DA8D04F580BC6F607AF6804FE22081DAD31E666FFC78C2C19C3FCE0B7557BA7A0F94B7EFBE0C877DA8FDEA32F910BE19146B68B3A87C435BD588E404015A98368BBF8F20E8D0A4D33C6A5AF32A776756B348C481053B5180AEFDA14718026E99751383279B3BBC27B7E06ADA92B1AC9A2185C85C2BE368E2775304B06092A864886F70D010701301406082A864886F70D03070408EA3A2BADC42151488028B76C469784A83395AD1F1AE5AD02628D6ED01D9A8DC44DA3B4D6CA8A17B90D6791DE60A6FCE6246B\",\r\n - \ \"circuitConnectionStatus\": \"Disconnected\"\r\n },\r\n - \ \"type\": \"Microsoft.Network/expressRouteCircuits/peerings/connections\"\r\n - \ }\r\n ],\r\n \"peeredConnections\": - []\r\n },\r\n \"type\": \"Microsoft.Network/expressRouteCircuits/peerings\"\r\n - \ }\r\n ],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": - {\r\n \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\": - \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": - \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\": - \"\",\r\n \"serviceKey\": \"589dd6d2-68f6-4055-9b53-05c25126403e\",\r\n - \ \"serviceProviderProvisioningState\": \"Provisioned\",\r\n \"allowGlobalReach\": - false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 5\r\n - \ },\r\n \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n - \ \"tier\": \"Premium\",\r\n \"family\": \"MeteredData\"\r\n - \ }\r\n },\r\n {\r\n \"name\": \"er4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/expressRouteCircuits/er4\",\r\n - \ \"etag\": \"W/\\\"7e88b8aa-4f0d-42aa-879e-4cef256a76ab\\\"\",\r\n \"type\": - \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n - \ \"resourceGuid\": \"95871a40-ae8a-4813-85a8-da9848b04c20\",\r\n \"peerings\": - [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": - {\r\n \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\": - \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": - \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\": - \"\",\r\n \"serviceKey\": \"fbdbed35-bc3a-447b-97e8-6e39431c5040\",\r\n - \ \"serviceProviderProvisioningState\": \"Provisioned\",\r\n \"allowGlobalReach\": - false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 9\r\n - \ },\r\n \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n - \ \"tier\": \"Premium\",\r\n \"family\": \"MeteredData\"\r\n - \ }\r\n },\r\n {\r\n \"name\": \"circuit1\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\",\r\n - \ \"etag\": \"W/\\\"4443072b-67d9-4a9d-808d-1e285609d0a5\\\"\",\r\n \"type\": - \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"3ea1b558-22d5-4ffe-84ae-af37d3889902\",\r\n \"peerings\": [],\r\n - \ \"authorizations\": [],\r\n \"serviceProviderProperties\": - {\r\n \"serviceProviderName\": \"Ibiza Test Provider\",\r\n \"peeringLocation\": - \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": - \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\": - \"\",\r\n \"serviceKey\": \"b8dab07d-1c71-4354-b553-14c4607e36ef\",\r\n - \ \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"allowGlobalReach\": - false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 6\r\n - \ },\r\n \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n - \ \"tier\": \"Premium\",\r\n \"family\": \"MeteredData\"\r\n - \ }\r\n }\r\n ]\r\n}" + string: '{"value":[{"name":"er3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/expressRouteCircuits/er3","etag":"W/\"f3e0c8bd-263a-4c06-b299-4086b51b8735\"","type":"Microsoft.Network/expressRouteCircuits","location":"westus","properties":{"provisioningState":"Failed","resourceGuid":"3906963b-2830-47a2-a3f0-572f3359d04b","peerings":[{"name":"AzurePrivatePeering","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/expressRouteCircuits/er3/peerings/AzurePrivatePeering","etag":"W/\"f3e0c8bd-263a-4c06-b299-4086b51b8735\"","properties":{"provisioningState":"Deleting","peeringType":"AzurePrivatePeering","azureASN":12076,"peerASN":100,"primaryPeerAddressPrefix":"192.168.1.0/30","secondaryPeerAddressPrefix":"192.168.2.0/30","primaryAzurePort":"A51-TEST-06GMR-CIS-1-PRI-C","secondaryAzurePort":"A51-TEST-06GMR-CIS-2-SEC-C","state":"Enabled","vlanId":100,"gatewayManagerEtag":"","lastModifiedBy":"Customer","microsoftPeeringConfig":{"advertisedPublicPrefixes":[],"advertisedCommunities":[],"advertisedPublicPrefixesState":"NotConfigured","customerASN":0,"legacyMode":0,"routingRegistryName":"NONE"},"connections":[{"name":"xz-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/expressRouteCircuits/er3/peerings/AzurePrivatePeering/connections/xz-vnet","etag":"W/\"f3e0c8bd-263a-4c06-b299-4086b51b8735\"","properties":{"provisioningState":"Deleting","expressRouteCircuitPeering":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/expressRouteCircuits/er3/peerings/AzurePrivatePeering"},"peerExpressRouteCircuitPeering":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xz-express-route-test/providers/Microsoft.Network/expressRouteCircuits/er3/peerings/AzurePrivatePeering"},"addressPrefix":"10.0.0.0/29","authorizationKey":"308201E906092A864886F70D010703A08201DA308201D6020100318201823082017E0201003066304F310B3009060355040613025553311E301C060355040A13154D6963726F736F667420436F72706F726174696F6E3120301E060355040313174D6963726F736F66742052534120544C5320434120303202137F00072A387F7370F3B0944E12000000072A38300D06092A864886F70D010101050004820100123A56032EA25680E3FF8CF3C558CA7D0246FE13F783F70C0A364E30081EB5E4103681BE190A3B9AC8D9361B98B707CA16B38BABE7A7E7E8B2D8412D119D958D14958FAD752307832D14EEE91A10F95C1AFA455C8C4CAEAF2FE668230E53410AEFBAE27C4A2BBD73BBA93FD72CE5700B332468C67A817F5470D8AE399CD9DCB8EE2004BFCF8FB3586C880A64904F7CBD517E36F7935EAD2FC1DC8F12A2878718D7F243805EC9788B3615A2F33C291F18EECB9B525DB6AFE4E0B4D1335749D608EDA51F6F33226992B6D0B52832042B6CB3FDAB1AFEEE903F98F8C023782BB88703B4414BE0037895E90D7F1461A757F1373F48D1E0F0920E4DFF48A072844D91304B06092A864886F70D010701301406082A864886F70D03070408C9AD2C43901AFC6E8028CBC1D37D0C66BA62A483A165CAD893FDE11BE8B77C8B5257D3FFC6C6A433ECAAA5D281E221EE5866","circuitConnectionStatus":"Connected","ipv6CircuitConnectionConfig":{"addressPrefix":"aa:bb::/125","circuitConnectionStatus":"Connected"}},"type":"Microsoft.Network/expressRouteCircuits/peerings/connections"}],"peeredConnections":[]},"type":"Microsoft.Network/expressRouteCircuits/peerings"}],"authorizations":[],"serviceProviderProperties":{"serviceProviderName":"Microsoft + ER Test","peeringLocation":"Area51","bandwidthInMbps":50},"circuitProvisioningState":"Enabled","allowClassicOperations":false,"gatewayManagerEtag":"","serviceKey":"589dd6d2-68f6-4055-9b53-05c25126403e","serviceProviderProvisioningState":"Provisioned","allowGlobalReach":false,"globalReachEnabled":false,"stag":5},"sku":{"name":"Premium_MeteredData","tier":"Premium","family":"MeteredData"}},{"name":"er4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/expressRouteCircuits/er4","etag":"W/\"3b7bf5b5-0f16-47a7-a2f5-1620ce565548\"","type":"Microsoft.Network/expressRouteCircuits","location":"westus","properties":{"provisioningState":"Failed","resourceGuid":"95871a40-ae8a-4813-85a8-da9848b04c20","peerings":[],"authorizations":[],"serviceProviderProperties":{"serviceProviderName":"Microsoft + ER Test","peeringLocation":"Area51","bandwidthInMbps":50},"circuitProvisioningState":"Enabled","allowClassicOperations":false,"gatewayManagerEtag":"","serviceKey":"fbdbed35-bc3a-447b-97e8-6e39431c5040","serviceProviderProvisioningState":"Provisioned","allowGlobalReach":false,"globalReachEnabled":false,"stag":9},"sku":{"name":"Premium_MeteredData","tier":"Premium","family":"MeteredData"}},{"name":"circuit1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1","etag":"W/\"29d5e993-201b-4f45-848d-f4911838660f\"","type":"Microsoft.Network/expressRouteCircuits","location":"westus","tags":{"foo":"doo"},"properties":{"provisioningState":"Succeeded","resourceGuid":"63422daa-0c6d-4d64-99f8-beff511614bb","peerings":[],"authorizations":[],"serviceProviderProperties":{"serviceProviderName":"Ibiza + Test Provider","peeringLocation":"Area51","bandwidthInMbps":50},"circuitProvisioningState":"Enabled","allowClassicOperations":false,"gatewayManagerEtag":"","serviceKey":"f66c68da-f500-45bb-8a06-2dfed6a6e40d","serviceProviderProvisioningState":"NotProvisioned","allowGlobalReach":false,"globalReachEnabled":false,"stag":4},"sku":{"name":"Premium_MeteredData","tier":"Premium","family":"MeteredData"}},{"name":"tf-er","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xz3-test/providers/Microsoft.Network/expressRouteCircuits/tf-er","etag":"W/\"f95a83e1-513c-4b7c-906f-a61b0a489531\"","type":"Microsoft.Network/expressRouteCircuits","location":"eastus","tags":{},"properties":{"provisioningState":"Failed","resourceGuid":"43d497fa-3707-4fe6-b7b6-b3a8edcf7932","peerings":[{"name":"AzurePrivatePeering","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xz3-test/providers/Microsoft.Network/expressRouteCircuits/tf-er/peerings/AzurePrivatePeering","etag":"W/\"f95a83e1-513c-4b7c-906f-a61b0a489531\"","properties":{"provisioningState":"Updating","peeringType":"AzurePrivatePeering","azureASN":12076,"peerASN":100,"primaryPeerAddressPrefix":"192.168.1.0/30","secondaryPeerAddressPrefix":"192.168.2.0/30","primaryAzurePort":"","secondaryAzurePort":"","state":"Enabled","vlanId":100,"gatewayManagerEtag":"","lastModifiedBy":"Customer","microsoftPeeringConfig":{"advertisedPublicPrefixes":[],"advertisedCommunities":[],"advertisedPublicPrefixesState":"NotConfigured","customerASN":0,"legacyMode":0,"routingRegistryName":"NONE"},"connections":[{"name":"xz-test-conn","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xz3-test/providers/Microsoft.Network/expressRouteCircuits/tf-er/peerings/AzurePrivatePeering/connections/xz-test-conn","etag":"W/\"f95a83e1-513c-4b7c-906f-a61b0a489531\"","properties":{"provisioningState":"Updating","expressRouteCircuitPeering":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dedharcktinit/providers/Microsoft.Network/expressRouteCircuits/tf-er/peerings/AzurePrivatePeering"},"peerExpressRouteCircuitPeering":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dedharcktpeer/providers/Microsoft.Network/expressRouteCircuits/tf-er/peerings/AzurePrivatePeering"},"addressPrefix":"10.0.0.0/29","authorizationKey":"308201E906092A864886F70D010703A08201DA308201D6020100318201823082017E0201003066304F310B3009060355040613025553311E301C060355040A13154D6963726F736F667420436F72706F726174696F6E3120301E060355040313174D6963726F736F66742052534120544C5320434120303102136B00074269EEEF64C5CEF99928000000074269300D06092A864886F70D0101010500048201000FC748D605FA7A59315FD27C7220F71964E14A9D6E553ECE2B7F742CCEE8D3340C6617D29A559B58397E344FC326C68E087D2483797884CA98F71604BFEB2CE09CE767C5E971801F563D9AB95FC923D3E15D204FA3D154F56FC7A9C71B2D3B1DA5F20BCC78948538BCF1A13BC54ED6D126358514EB6CAA5230040E010212D188AD3EDF281CD841CFA5A52E4C4C729810EC7704BBE64A063B9EE64825610580CA20C784CB243F6B9BDD558802390967265DA92CE9820C6B0B8D578ACE32B897BBD13BD0A06D5426EE359DF9B430E51F71522F0A4C766BEDCF6209EC6A65D6B0F4A38B1F68BDE384CBD01FF2321ADD0FDD83ECEA3399AA0215ED7036C873DB4357304B06092A864886F70D010701301406082A864886F70D030704083473DAA3BEC0C1D980284B06EDA0A0B87BA8046FE02A4CD926CAF9CA365A847F9F2D122094B291644CD09AE966971468EED7","circuitConnectionStatus":"Disconnected"},"type":"Microsoft.Network/expressRouteCircuits/peerings/connections"}],"peeredConnections":[]},"type":"Microsoft.Network/expressRouteCircuits/peerings"}],"authorizations":[],"serviceProviderProperties":{"serviceProviderName":"Microsoft + ER Test","peeringLocation":"Area51","bandwidthInMbps":50},"circuitProvisioningState":"Enabled","allowClassicOperations":false,"gatewayManagerEtag":"","serviceKey":"03973277-4572-47df-ac12-17299ed0f460","serviceProviderProvisioningState":"Provisioned","allowGlobalReach":false,"globalReachEnabled":false,"stag":2},"sku":{"name":"Standard_MeteredData","tier":"Standard","family":"MeteredData"}},{"name":"tf-er2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xz3-test/providers/Microsoft.Network/expressRouteCircuits/tf-er2","etag":"W/\"2f199db5-b9ef-44ce-9194-7fab6657f6b2\"","type":"Microsoft.Network/expressRouteCircuits","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"c2f74016-4685-4e84-9c4b-95451f5bec21","peerings":[],"authorizations":[],"serviceProviderProperties":{"serviceProviderName":"Microsoft + ER Test","peeringLocation":"Area51","bandwidthInMbps":50},"circuitProvisioningState":"Enabled","allowClassicOperations":false,"gatewayManagerEtag":"","serviceKey":"2e2b9201-6f8e-4fdf-91ed-8195d0714ab7","serviceProviderProvisioningState":"Provisioned","allowGlobalReach":false,"globalReachEnabled":false,"stag":3},"sku":{"name":"Standard_MeteredData","tier":"Standard","family":"MeteredData"}},{"name":"tf-er3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xz3-test/providers/Microsoft.Network/expressRouteCircuits/tf-er3","etag":"W/\"6a24f1e1-976d-4b3d-a850-7b57e977407c\"","type":"Microsoft.Network/expressRouteCircuits","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fde4badf-412b-4685-8604-e228a32d1b2a","peerings":[],"authorizations":[],"serviceProviderProperties":{"serviceProviderName":"Microsoft + ER Test","peeringLocation":"Area51","bandwidthInMbps":50},"circuitProvisioningState":"Enabled","allowClassicOperations":false,"gatewayManagerEtag":"","serviceKey":"767e52cd-c5b5-494e-9b34-de4274bb3b6b","serviceProviderProvisioningState":"Provisioned","allowGlobalReach":false,"globalReachEnabled":false,"stag":4},"sku":{"name":"Standard_MeteredData","tier":"Standard","family":"MeteredData"}}]}' headers: cache-control: - no-cache content-length: - - '7406' + - '10960' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:08 GMT + - Thu, 25 Mar 2021 08:08:48 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - bd857e1e-d910-43e7-add0-0fc4fbeb6499 + x-ms-original-request-ids: + - b9339089-ad4b-4e2f-b1d9-11b08925e3cc + - cc75fabb-2ead-4fa8-a1e5-c01ef1733871 status: code: 200 message: OK @@ -1233,25 +1193,25 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits?api-version=2020-11-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\",\r\n - \ \"etag\": \"W/\\\"4443072b-67d9-4a9d-808d-1e285609d0a5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"29d5e993-201b-4f45-848d-f4911838660f\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"3ea1b558-22d5-4ffe-84ae-af37d3889902\",\r\n \"peerings\": [],\r\n + \"63422daa-0c6d-4d64-99f8-beff511614bb\",\r\n \"peerings\": [],\r\n \ \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Ibiza Test Provider\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\": - \"\",\r\n \"serviceKey\": \"b8dab07d-1c71-4354-b553-14c4607e36ef\",\r\n + \"\",\r\n \"serviceKey\": \"f66c68da-f500-45bb-8a06-2dfed6a6e40d\",\r\n \ \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"allowGlobalReach\": - false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 6\r\n + false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 4\r\n \ },\r\n \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \ \"tier\": \"Premium\",\r\n \"family\": \"MeteredData\"\r\n \ }\r\n }\r\n ]\r\n}" @@ -1263,7 +1223,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:09 GMT + - Thu, 25 Mar 2021 08:08:48 GMT expires: - '-1' pragma: @@ -1280,7 +1240,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b13f4f73-731b-4e35-a14c-1c181bb8f540 + - 35d7a6c3-1823-4e5b-acd0-71ff78d4e6f4 status: code: 200 message: OK @@ -1298,23 +1258,23 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\",\r\n - \ \"etag\": \"W/\\\"4443072b-67d9-4a9d-808d-1e285609d0a5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"29d5e993-201b-4f45-848d-f4911838660f\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"3ea1b558-22d5-4ffe-84ae-af37d3889902\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"63422daa-0c6d-4d64-99f8-beff511614bb\",\r\n \ \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Ibiza Test Provider\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\": - \"\",\r\n \"serviceKey\": \"b8dab07d-1c71-4354-b553-14c4607e36ef\",\r\n + \"\",\r\n \"serviceKey\": \"f66c68da-f500-45bb-8a06-2dfed6a6e40d\",\r\n \ \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"allowGlobalReach\": - false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 6\r\n },\r\n + false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 4\r\n },\r\n \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \ \"family\": \"MeteredData\"\r\n }\r\n}" headers: @@ -1325,7 +1285,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:11 GMT + - Thu, 25 Mar 2021 08:08:49 GMT expires: - '-1' pragma: @@ -1342,7 +1302,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 220fa52e-0da7-4d64-a178-f63e120dbd22 + - ccb2620a-b918-44f4-b754-6236d8fd82bc status: code: 200 message: OK @@ -1360,7 +1320,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/stats?api-version=2020-11-01 response: @@ -1375,7 +1335,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:11 GMT + - Thu, 25 Mar 2021 08:08:50 GMT expires: - '-1' pragma: @@ -1392,7 +1352,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 71119a63-2c3f-49f0-80d6-5050d0a574f9 + - 554026b9-e2aa-4429-8c4e-079442aa6dd0 status: code: 200 message: OK @@ -1410,23 +1370,23 @@ interactions: ParameterSetName: - -g -n --set User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\",\r\n - \ \"etag\": \"W/\\\"4443072b-67d9-4a9d-808d-1e285609d0a5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"29d5e993-201b-4f45-848d-f4911838660f\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"3ea1b558-22d5-4ffe-84ae-af37d3889902\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"63422daa-0c6d-4d64-99f8-beff511614bb\",\r\n \ \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Ibiza Test Provider\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\": - \"\",\r\n \"serviceKey\": \"b8dab07d-1c71-4354-b553-14c4607e36ef\",\r\n + \"\",\r\n \"serviceKey\": \"f66c68da-f500-45bb-8a06-2dfed6a6e40d\",\r\n \ \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"allowGlobalReach\": - false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 6\r\n },\r\n + false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 4\r\n },\r\n \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \ \"family\": \"MeteredData\"\r\n }\r\n}" headers: @@ -1437,7 +1397,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:12 GMT + - Thu, 25 Mar 2021 08:08:51 GMT expires: - '-1' pragma: @@ -1454,7 +1414,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4bbbbfa4-7b1b-4f2c-a6d7-f1b66657bd2d + - 7d3d8329-92a4-48f3-8e21-395a89240b4f status: code: 200 message: OK @@ -1463,7 +1423,7 @@ interactions: "location": "westus", "tags": {"foo": "doo", "test": "Test"}, "sku": {"name": "Premium_MeteredData", "tier": "Premium", "family": "MeteredData"}, "properties": {"allowClassicOperations": false, "circuitProvisioningState": "Enabled", "serviceProviderProvisioningState": - "NotProvisioned", "authorizations": [], "peerings": [], "serviceKey": "b8dab07d-1c71-4354-b553-14c4607e36ef", + "NotProvisioned", "authorizations": [], "peerings": [], "serviceKey": "f66c68da-f500-45bb-8a06-2dfed6a6e40d", "serviceProviderProperties": {"serviceProviderName": "Ibiza Test Provider", "peeringLocation": "Area51", "bandwidthInMbps": 50}, "gatewayManagerEtag": "", "globalReachEnabled": false}}' @@ -1483,30 +1443,30 @@ interactions: ParameterSetName: - -g -n --set User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\",\r\n - \ \"etag\": \"W/\\\"918a9d2d-79f8-4e61-aeb0-e362b2c1ffe5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"90fc76e5-e2d3-4300-9903-17844716b792\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {\r\n \"foo\": \"doo\",\r\n \"test\": \"Test\"\r\n },\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"3ea1b558-22d5-4ffe-84ae-af37d3889902\",\r\n \"peerings\": [],\r\n \"authorizations\": + \"63422daa-0c6d-4d64-99f8-beff511614bb\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Ibiza Test Provider\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Disabled\",\r\n \"allowClassicOperations\": - false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"b8dab07d-1c71-4354-b553-14c4607e36ef\",\r\n + false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"f66c68da-f500-45bb-8a06-2dfed6a6e40d\",\r\n \ \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"allowGlobalReach\": - false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 6\r\n },\r\n + false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 4\r\n },\r\n \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \ \"family\": \"MeteredData\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a4d5576a-630d-458e-bedd-cefbb8ec8dc9?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/505a4428-cf81-4342-b983-7f54bf14ea85?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -1514,7 +1474,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:14 GMT + - Thu, 25 Mar 2021 08:08:56 GMT expires: - '-1' pragma: @@ -1531,9 +1491,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8b12bb67-bc3d-46e6-8368-340c8d698c00 + - e7cdfc96-d41e-4849-ba59-9228715b766c x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1198' status: code: 200 message: OK @@ -1551,9 +1511,9 @@ interactions: ParameterSetName: - -g -n --set User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a4d5576a-630d-458e-bedd-cefbb8ec8dc9?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/505a4428-cf81-4342-b983-7f54bf14ea85?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1565,7 +1525,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:25 GMT + - Thu, 25 Mar 2021 08:09:06 GMT expires: - '-1' pragma: @@ -1582,7 +1542,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a7af476-d0b5-42f3-9659-72551a75e845 + - 9d98567a-a507-4f6a-be13-a65cee88a3e1 status: code: 200 message: OK @@ -1600,23 +1560,23 @@ interactions: ParameterSetName: - -g -n --set User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\",\r\n - \ \"etag\": \"W/\\\"e8fae2ef-3312-4236-b15d-f3711777ea8b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"fa9272d3-0d00-44e4-97b9-4da90fedfc07\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {\r\n \"foo\": \"doo\",\r\n \"test\": \"Test\"\r\n },\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"3ea1b558-22d5-4ffe-84ae-af37d3889902\",\r\n \"peerings\": [],\r\n \"authorizations\": + \"63422daa-0c6d-4d64-99f8-beff511614bb\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Ibiza Test Provider\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"allowClassicOperations\": - false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"b8dab07d-1c71-4354-b553-14c4607e36ef\",\r\n + false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"f66c68da-f500-45bb-8a06-2dfed6a6e40d\",\r\n \ \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"allowGlobalReach\": - false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 6\r\n },\r\n + false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 4\r\n },\r\n \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \ \"family\": \"MeteredData\"\r\n }\r\n}" headers: @@ -1627,7 +1587,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:25 GMT + - Thu, 25 Mar 2021 08:09:06 GMT expires: - '-1' pragma: @@ -1644,7 +1604,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ba4374d8-9423-4ea1-8159-7848964fca1e + - 0142f3a0-f468-440c-90a9-d51c83b94097 status: code: 200 message: OK @@ -1662,23 +1622,23 @@ interactions: ParameterSetName: - -g -n --tags User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\",\r\n - \ \"etag\": \"W/\\\"e8fae2ef-3312-4236-b15d-f3711777ea8b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"fa9272d3-0d00-44e4-97b9-4da90fedfc07\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {\r\n \"foo\": \"doo\",\r\n \"test\": \"Test\"\r\n },\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"3ea1b558-22d5-4ffe-84ae-af37d3889902\",\r\n \"peerings\": [],\r\n \"authorizations\": + \"63422daa-0c6d-4d64-99f8-beff511614bb\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Ibiza Test Provider\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"allowClassicOperations\": - false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"b8dab07d-1c71-4354-b553-14c4607e36ef\",\r\n + false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"f66c68da-f500-45bb-8a06-2dfed6a6e40d\",\r\n \ \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"allowGlobalReach\": - false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 6\r\n },\r\n + false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 4\r\n },\r\n \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \ \"family\": \"MeteredData\"\r\n }\r\n}" headers: @@ -1689,7 +1649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:25 GMT + - Thu, 25 Mar 2021 08:09:08 GMT expires: - '-1' pragma: @@ -1706,7 +1666,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f8dc0a8f-cda3-4e92-946d-0e5470d3337c + - bba77c61-0e51-4e8b-b976-bcce8186161f status: code: 200 message: OK @@ -1715,7 +1675,7 @@ interactions: "location": "westus", "tags": {"foo": "boo"}, "sku": {"name": "Premium_MeteredData", "tier": "Premium", "family": "MeteredData"}, "properties": {"allowClassicOperations": false, "circuitProvisioningState": "Enabled", "serviceProviderProvisioningState": - "NotProvisioned", "authorizations": [], "peerings": [], "serviceKey": "b8dab07d-1c71-4354-b553-14c4607e36ef", + "NotProvisioned", "authorizations": [], "peerings": [], "serviceKey": "f66c68da-f500-45bb-8a06-2dfed6a6e40d", "serviceProviderProperties": {"serviceProviderName": "Ibiza Test Provider", "peeringLocation": "Area51", "bandwidthInMbps": 50}, "gatewayManagerEtag": "", "globalReachEnabled": false}}' @@ -1735,30 +1695,30 @@ interactions: ParameterSetName: - -g -n --tags User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\",\r\n - \ \"etag\": \"W/\\\"4ceea060-1a4a-4a81-810e-80422caa2699\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c8a783dc-c7a8-4171-bf5f-d28fd3ccc5e4\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {\r\n \"foo\": \"boo\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": - \"Updating\",\r\n \"resourceGuid\": \"3ea1b558-22d5-4ffe-84ae-af37d3889902\",\r\n + \"Updating\",\r\n \"resourceGuid\": \"63422daa-0c6d-4d64-99f8-beff511614bb\",\r\n \ \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Ibiza Test Provider\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Disabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\": - \"\",\r\n \"serviceKey\": \"b8dab07d-1c71-4354-b553-14c4607e36ef\",\r\n + \"\",\r\n \"serviceKey\": \"f66c68da-f500-45bb-8a06-2dfed6a6e40d\",\r\n \ \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"allowGlobalReach\": - false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 6\r\n },\r\n + false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 4\r\n },\r\n \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \ \"family\": \"MeteredData\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f6ead235-20ea-4348-adc4-7b80440ae43e?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/06be42cf-3e67-43d7-b7a8-2b70105148aa?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -1766,7 +1726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:30 GMT + - Thu, 25 Mar 2021 08:09:12 GMT expires: - '-1' pragma: @@ -1783,9 +1743,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ff1dda8b-9e00-4c94-bd94-fbf7f112ecd1 + - fb943f3d-ad86-49db-8857-db3d5c059979 x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1199' status: code: 200 message: OK @@ -1803,9 +1763,9 @@ interactions: ParameterSetName: - -g -n --tags User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f6ead235-20ea-4348-adc4-7b80440ae43e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/06be42cf-3e67-43d7-b7a8-2b70105148aa?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1817,7 +1777,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:40 GMT + - Thu, 25 Mar 2021 08:09:22 GMT expires: - '-1' pragma: @@ -1834,7 +1794,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6ba7dae8-e3f4-4226-8374-f729dc8c9131 + - df3707ad-74f5-4b7c-94d3-961af61bd756 status: code: 200 message: OK @@ -1852,23 +1812,23 @@ interactions: ParameterSetName: - -g -n --tags User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\",\r\n - \ \"etag\": \"W/\\\"94d54e52-9f89-40e0-80ec-cc89baa3a8b5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"fcb0d946-054c-4e0b-997c-4bd16f7de0b1\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {\r\n \"foo\": \"boo\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"3ea1b558-22d5-4ffe-84ae-af37d3889902\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"63422daa-0c6d-4d64-99f8-beff511614bb\",\r\n \ \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Ibiza Test Provider\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"allowClassicOperations\": false,\r\n \"gatewayManagerEtag\": - \"\",\r\n \"serviceKey\": \"b8dab07d-1c71-4354-b553-14c4607e36ef\",\r\n + \"\",\r\n \"serviceKey\": \"f66c68da-f500-45bb-8a06-2dfed6a6e40d\",\r\n \ \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"allowGlobalReach\": - false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 6\r\n },\r\n + false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 4\r\n },\r\n \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \ \"family\": \"MeteredData\"\r\n }\r\n}" headers: @@ -1879,7 +1839,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:41 GMT + - Thu, 25 Mar 2021 08:09:22 GMT expires: - '-1' pragma: @@ -1896,7 +1856,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c2f9c969-369e-4e6b-84fa-3be8a8e5f454 + - f6c50112-886e-496b-b458-51f2d411bb8b status: code: 200 message: OK @@ -1918,19 +1878,19 @@ interactions: ParameterSetName: - -g --circuit-name -n User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\",\r\n - \ \"etag\": \"W/\\\"c0f5d26c-dba5-4ff5-9bc1-fd38f3a76e57\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"a5ea5655-c143-43d3-8043-b26ea04a4b80\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"authorizationKey\": - \"bd3f5317-2862-4f31-b053-5225771dbe2d\",\r\n \"authorizationUseStatus\": + \"1328b8bd-9410-4e80-a814-302b012f1bae\",\r\n \"authorizationUseStatus\": \"Available\"\r\n },\r\n \"type\": \"Microsoft.Network/expressRouteCircuits/authorizations\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64fb94f1-1620-4872-b25a-7edcd73cf412?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/28bfb499-7619-48e5-b161-2500cb8e46a3?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -1938,7 +1898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:42 GMT + - Thu, 25 Mar 2021 08:09:23 GMT expires: - '-1' pragma: @@ -1951,9 +1911,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e04106a3-c8b7-4627-adbb-320a7a960288 + - 9151b705-82db-4f5e-bd31-149261656be8 x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1198' status: code: 201 message: Created @@ -1971,9 +1931,9 @@ interactions: ParameterSetName: - -g --circuit-name -n User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/64fb94f1-1620-4872-b25a-7edcd73cf412?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/28bfb499-7619-48e5-b161-2500cb8e46a3?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1985,7 +1945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:52 GMT + - Thu, 25 Mar 2021 08:09:33 GMT expires: - '-1' pragma: @@ -2002,7 +1962,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4f7abef9-c5f4-48ce-a6f5-6a44366c8651 + - 299b350f-4849-45f6-86ac-cdaa9125b24b status: code: 200 message: OK @@ -2020,15 +1980,15 @@ interactions: ParameterSetName: - -g --circuit-name -n User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\",\r\n - \ \"etag\": \"W/\\\"ae3f95c6-7f2f-44b4-9973-0103cde42db2\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"8100e92c-94c1-41f1-a5a3-58fd6bd59b2b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"authorizationKey\": - \"bd3f5317-2862-4f31-b053-5225771dbe2d\",\r\n \"authorizationUseStatus\": + \"1328b8bd-9410-4e80-a814-302b012f1bae\",\r\n \"authorizationUseStatus\": \"Available\"\r\n },\r\n \"type\": \"Microsoft.Network/expressRouteCircuits/authorizations\"\r\n}" headers: cache-control: @@ -2038,7 +1998,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:53 GMT + - Thu, 25 Mar 2021 08:09:34 GMT expires: - '-1' pragma: @@ -2055,7 +2015,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2c76317b-dae4-43d2-bdc5-ee08ed90d2dd + - 15266417-1129-41d9-aed5-f13c23dd02c5 status: code: 200 message: OK @@ -2073,16 +2033,16 @@ interactions: ParameterSetName: - --resource-group --circuit-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations?api-version=2020-11-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\",\r\n - \ \"etag\": \"W/\\\"ae3f95c6-7f2f-44b4-9973-0103cde42db2\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"8100e92c-94c1-41f1-a5a3-58fd6bd59b2b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"authorizationKey\": - \"bd3f5317-2862-4f31-b053-5225771dbe2d\",\r\n \"authorizationUseStatus\": + \"1328b8bd-9410-4e80-a814-302b012f1bae\",\r\n \"authorizationUseStatus\": \"Available\"\r\n },\r\n \"type\": \"Microsoft.Network/expressRouteCircuits/authorizations\"\r\n \ }\r\n ]\r\n}" headers: @@ -2093,7 +2053,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:53 GMT + - Thu, 25 Mar 2021 08:09:36 GMT expires: - '-1' pragma: @@ -2110,7 +2070,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 97b0d0bf-652e-46e1-9a0a-37dead573318 + - 3483dad8-23ae-42aa-95d3-8f73f0729f97 status: code: 200 message: OK @@ -2128,15 +2088,15 @@ interactions: ParameterSetName: - -g --circuit-name -n User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"auth1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1\",\r\n - \ \"etag\": \"W/\\\"ae3f95c6-7f2f-44b4-9973-0103cde42db2\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"8100e92c-94c1-41f1-a5a3-58fd6bd59b2b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"authorizationKey\": - \"bd3f5317-2862-4f31-b053-5225771dbe2d\",\r\n \"authorizationUseStatus\": + \"1328b8bd-9410-4e80-a814-302b012f1bae\",\r\n \"authorizationUseStatus\": \"Available\"\r\n },\r\n \"type\": \"Microsoft.Network/expressRouteCircuits/authorizations\"\r\n}" headers: cache-control: @@ -2146,7 +2106,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:47:55 GMT + - Thu, 25 Mar 2021 08:09:37 GMT expires: - '-1' pragma: @@ -2163,7 +2123,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ddb8ee7c-922e-46d3-9425-f8d52c83c21d + - 966b104a-0bb4-4475-bc4c-1f7967f3741e status: code: 200 message: OK @@ -2183,7 +2143,7 @@ interactions: ParameterSetName: - -g --circuit-name -n User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations/auth1?api-version=2020-11-01 response: @@ -2191,17 +2151,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2ebd8517-7d7f-4842-bba9-d27b10c46f1e?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6a3298ec-31db-4c24-b0ab-19f8eb2bd981?api-version=2020-11-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Mar 2021 05:47:57 GMT + - Thu, 25 Mar 2021 08:09:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/2ebd8517-7d7f-4842-bba9-d27b10c46f1e?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/6a3298ec-31db-4c24-b0ab-19f8eb2bd981?api-version=2020-11-01 pragma: - no-cache server: @@ -2212,9 +2172,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ed64b515-31b4-4ec7-ba54-78165d713319 + - 5f314240-9220-4c9e-9fb9-76735b5909a5 x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + - '14999' status: code: 202 message: Accepted @@ -2232,9 +2192,9 @@ interactions: ParameterSetName: - -g --circuit-name -n User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2ebd8517-7d7f-4842-bba9-d27b10c46f1e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6a3298ec-31db-4c24-b0ab-19f8eb2bd981?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2246,7 +2206,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:48:07 GMT + - Thu, 25 Mar 2021 08:09:47 GMT expires: - '-1' pragma: @@ -2263,7 +2223,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c42b24bb-9296-477c-acd1-c7d9d94c0b03 + - 9634a996-8971-4360-82d7-8c9bf953c983 status: code: 200 message: OK @@ -2281,7 +2241,7 @@ interactions: ParameterSetName: - --resource-group --circuit-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/authorizations?api-version=2020-11-01 response: @@ -2295,7 +2255,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:48:08 GMT + - Thu, 25 Mar 2021 08:09:49 GMT expires: - '-1' pragma: @@ -2312,7 +2272,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e7349c71-a159-4a53-bd12-d5316aff277e + - 37ad8e00-6a12-4bac-80d1-3d240e60492e status: code: 200 message: OK @@ -2337,13 +2297,13 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\",\r\n - \ \"etag\": \"W/\\\"1b21a06b-492f-45e1-9653-8c0d103f1e06\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"404b15dc-6e4d-4cfa-8ae1-5bb154044743\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \ \"azureASN\": 0,\r\n \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\": \"102.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"103.0.0.0/30\",\r\n @@ -2352,7 +2312,7 @@ interactions: \ \"type\": \"Microsoft.Network/expressRouteCircuits/peerings\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b170a61d-24f9-42ec-bbb0-3b08c4c189da?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c5fa2770-c335-42e2-8cd5-788058656a2f?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -2360,7 +2320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:48:09 GMT + - Thu, 25 Mar 2021 08:09:50 GMT expires: - '-1' pragma: @@ -2373,9 +2333,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 07b01d6f-1837-4266-a0ae-836b5a087d58 + - 218f0a64-ff59-4909-a62a-1ec53171352e x-ms-ratelimit-remaining-subscription-writes: - - '1185' + - '1198' status: code: 201 message: Created @@ -2394,9 +2354,9 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b170a61d-24f9-42ec-bbb0-3b08c4c189da?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c5fa2770-c335-42e2-8cd5-788058656a2f?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2408,7 +2368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:48:20 GMT + - Thu, 25 Mar 2021 08:10:00 GMT expires: - '-1' pragma: @@ -2425,7 +2385,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eda98fd2-328e-4776-a99b-33f86fa723e4 + - 5ff69468-d64b-4e86-906c-219c71a4df5c status: code: 200 message: OK @@ -2444,13 +2404,13 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\",\r\n - \ \"etag\": \"W/\\\"81f0ea17-7afd-4baf-a085-38d569910787\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"6e7aafcf-a2d8-4316-8679-f39bc46a048f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \ \"azureASN\": 12076,\r\n \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\": \"102.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"103.0.0.0/30\",\r\n @@ -2467,7 +2427,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:48:20 GMT + - Thu, 25 Mar 2021 08:10:00 GMT expires: - '-1' pragma: @@ -2484,7 +2444,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9a84d463-9095-4f6c-8881-d7176ec5a34e + - 60fe48c1-d355-4029-b325-037969f61b23 status: code: 200 message: OK @@ -2510,13 +2470,13 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet --advertised-public-prefixes --customer-asn --routing-registry-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\",\r\n - \ \"etag\": \"W/\\\"4c94a6c1-944f-47e0-969f-6390cf0295b9\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"5447c504-fc90-4b4e-b47a-679220fc8d24\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"peeringType\": \"MicrosoftPeering\",\r\n \ \"azureASN\": 0,\r\n \"peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n @@ -2528,7 +2488,7 @@ interactions: [],\r\n \"peeredConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/expressRouteCircuits/peerings\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d60e0c03-9ed2-45b9-87c6-b8face634a7f?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bed1309f-692e-44ce-b408-3deb5d511566?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -2536,7 +2496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:48:22 GMT + - Thu, 25 Mar 2021 08:10:03 GMT expires: - '-1' pragma: @@ -2549,9 +2509,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 72db8fa1-1f23-47f6-8db6-477784aaef67 + - 251c41dc-b073-43eb-ad45-6bebc4b0ca13 x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1197' status: code: 201 message: Created @@ -2570,9 +2530,9 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet --advertised-public-prefixes --customer-asn --routing-registry-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d60e0c03-9ed2-45b9-87c6-b8face634a7f?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bed1309f-692e-44ce-b408-3deb5d511566?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2584,7 +2544,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:48:32 GMT + - Thu, 25 Mar 2021 08:10:13 GMT expires: - '-1' pragma: @@ -2601,7 +2561,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2d190993-4e39-462b-8618-916af5be5764 + - 74554447-cf96-4809-ad4a-43324f4b5fba status: code: 200 message: OK @@ -2620,9 +2580,9 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet --advertised-public-prefixes --customer-asn --routing-registry-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d60e0c03-9ed2-45b9-87c6-b8face634a7f?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bed1309f-692e-44ce-b408-3deb5d511566?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2634,7 +2594,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:48:42 GMT + - Thu, 25 Mar 2021 08:10:23 GMT expires: - '-1' pragma: @@ -2651,7 +2611,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3605ae46-0e67-4966-a234-ed4355392955 + - fdc45880-6baa-4a58-ae88-0dad6fff91d2 status: code: 200 message: OK @@ -2670,13 +2630,13 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet --advertised-public-prefixes --customer-asn --routing-registry-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\",\r\n - \ \"etag\": \"W/\\\"0669f591-4a97-4e0d-ab01-b21de409767e\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"43073e45-5d34-44a5-980b-b0e10e9a5116\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringType\": \"MicrosoftPeering\",\r\n \ \"azureASN\": 12076,\r\n \"peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n @@ -2696,7 +2656,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:48:43 GMT + - Thu, 25 Mar 2021 08:10:24 GMT expires: - '-1' pragma: @@ -2713,7 +2673,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e56ba3fb-83aa-4a7d-8161-eac43f64e903 + - 4bd767d6-0b73-44da-b096-d90efafd6fa8 status: code: 200 message: OK @@ -2731,13 +2691,13 @@ interactions: ParameterSetName: - -g --circuit-name -n User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\",\r\n - \ \"etag\": \"W/\\\"0669f591-4a97-4e0d-ab01-b21de409767e\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"43073e45-5d34-44a5-980b-b0e10e9a5116\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringType\": \"MicrosoftPeering\",\r\n \ \"azureASN\": 12076,\r\n \"peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n @@ -2757,7 +2717,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:48:44 GMT + - Thu, 25 Mar 2021 08:10:25 GMT expires: - '-1' pragma: @@ -2774,7 +2734,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bd190622-411e-43d8-9033-406414969734 + - 0ff3ca54-770b-4e3e-bbaa-d5729e584086 status: code: 200 message: OK @@ -2794,7 +2754,7 @@ interactions: ParameterSetName: - -g --circuit-name -n User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2020-11-01 response: @@ -2802,17 +2762,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0004c134-5efe-4991-bbad-4340a08db23c?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1fc1d4a3-2145-4940-9293-186b276665a7?api-version=2020-11-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Mar 2021 05:48:45 GMT + - Thu, 25 Mar 2021 08:10:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/0004c134-5efe-4991-bbad-4340a08db23c?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/1fc1d4a3-2145-4940-9293-186b276665a7?api-version=2020-11-01 pragma: - no-cache server: @@ -2823,9 +2783,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 16bb936e-e3ec-4980-a6f6-6d7163f63428 + - 58048f53-4659-4b17-9bdf-c4690f1d1813 x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + - '14999' status: code: 202 message: Accepted @@ -2843,9 +2803,9 @@ interactions: ParameterSetName: - -g --circuit-name -n User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0004c134-5efe-4991-bbad-4340a08db23c?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1fc1d4a3-2145-4940-9293-186b276665a7?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2857,7 +2817,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:48:55 GMT + - Thu, 25 Mar 2021 08:10:35 GMT expires: - '-1' pragma: @@ -2874,7 +2834,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d45a069a-3242-412d-b64a-42c1bdcacd79 + - 787b40b0-da4b-4e63-8960-7b15764ec3b9 status: code: 200 message: OK @@ -2892,14 +2852,14 @@ interactions: ParameterSetName: - --resource-group --circuit-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings?api-version=2020-11-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"AzurePrivatePeering\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\",\r\n - \ \"etag\": \"W/\\\"1e4a902b-d2f2-44f7-9e0b-16021e34e573\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"8d556b0a-847c-48da-a591-256287abefc5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \"azureASN\": 12076,\r\n \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\": \"102.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": @@ -2917,7 +2877,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:48:57 GMT + - Thu, 25 Mar 2021 08:10:38 GMT expires: - '-1' pragma: @@ -2934,7 +2894,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d857c718-9bde-45a9-8549-aba50619eab5 + - 7e2c204d-e890-4e14-8636-950fcd5729cf status: code: 200 message: OK @@ -2952,13 +2912,13 @@ interactions: ParameterSetName: - -g --circuit-name -n --set User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\",\r\n - \ \"etag\": \"W/\\\"1e4a902b-d2f2-44f7-9e0b-16021e34e573\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"8d556b0a-847c-48da-a591-256287abefc5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \ \"azureASN\": 12076,\r\n \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\": \"102.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"103.0.0.0/30\",\r\n @@ -2975,7 +2935,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:48:59 GMT + - Thu, 25 Mar 2021 08:10:39 GMT expires: - '-1' pragma: @@ -2992,7 +2952,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 02c6509c-e41c-4795-8a55-d09055fda4d8 + - 40bf2ef5-9933-4504-95b7-035e2b496807 status: code: 200 message: OK @@ -3019,13 +2979,13 @@ interactions: ParameterSetName: - -g --circuit-name -n --set User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\",\r\n - \ \"etag\": \"W/\\\"a518e398-8919-419e-af75-4d9c0aace99f\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"a2fb0825-032d-4b83-ac48-e60eb795f570\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \ \"azureASN\": 12076,\r\n \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\": \"102.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"103.0.0.0/30\",\r\n @@ -3036,7 +2996,7 @@ interactions: \"Microsoft.Network/expressRouteCircuits/peerings\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0e58a362-24b1-429c-835e-00edc6697b2c?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6909ab7f-0875-4f6b-ac6b-dd9182b18e78?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -3044,7 +3004,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:48:59 GMT + - Thu, 25 Mar 2021 08:10:40 GMT expires: - '-1' pragma: @@ -3061,9 +3021,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5a6978dc-6bec-4ed4-9ed0-02cda8144425 + - f67dea1c-f1a8-4e05-aff2-5544252a8ea4 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -3081,9 +3041,9 @@ interactions: ParameterSetName: - -g --circuit-name -n --set User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0e58a362-24b1-429c-835e-00edc6697b2c?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6909ab7f-0875-4f6b-ac6b-dd9182b18e78?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3095,7 +3055,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:49:09 GMT + - Thu, 25 Mar 2021 08:10:50 GMT expires: - '-1' pragma: @@ -3112,7 +3072,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 64c2c63a-eaaa-4159-82f6-838b3eb4ab4d + - 0bea0dc5-ced7-4639-b8bd-c945e5e9372b status: code: 200 message: OK @@ -3130,13 +3090,13 @@ interactions: ParameterSetName: - -g --circuit-name -n --set User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/AzurePrivatePeering\",\r\n - \ \"etag\": \"W/\\\"0bbe3df1-1b2d-46c3-ad01-20763c085a13\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"0a62ca14-7af4-4920-acd5-999521d21556\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \ \"azureASN\": 12076,\r\n \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\": \"102.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"103.0.0.0/30\",\r\n @@ -3153,7 +3113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:49:10 GMT + - Thu, 25 Mar 2021 08:10:50 GMT expires: - '-1' pragma: @@ -3170,7 +3130,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9422e1ad-fdbb-4814-b402-2e09165633a9 + - caf9fba9-d3c7-424f-8cf4-049f6178d737 status: code: 200 message: OK @@ -3190,7 +3150,7 @@ interactions: ParameterSetName: - --resource-group --name --peering-name --path User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/azureprivatepeering/arpTables/primary?api-version=2020-11-01 response: @@ -3204,11 +3164,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:49:11 GMT + - Thu, 25 Mar 2021 08:10:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/126e6163-33bd-473d-91b8-dcb122631b3d?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/b4fe4e46-86cd-4352-8870-5ed43d34c8cf?api-version=2020-11-01 pragma: - no-cache server: @@ -3219,7 +3179,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8c62ad13-11e8-4bac-99f8-ceaf89e4171f + - 96418f33-58f2-4fe2-b808-6de78d89886c status: code: 202 message: Accepted @@ -3237,9 +3197,9 @@ interactions: ParameterSetName: - --resource-group --name --peering-name --path User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/126e6163-33bd-473d-91b8-dcb122631b3d?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/b4fe4e46-86cd-4352-8870-5ed43d34c8cf?api-version=2020-11-01 response: body: string: "{\r\n \"value\": []\r\n}" @@ -3251,11 +3211,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:49:21 GMT + - Thu, 25 Mar 2021 08:11:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/126e6163-33bd-473d-91b8-dcb122631b3d?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/b4fe4e46-86cd-4352-8870-5ed43d34c8cf?api-version=2020-11-01 pragma: - no-cache server: @@ -3270,7 +3230,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8c62ad13-11e8-4bac-99f8-ceaf89e4171f + - 96418f33-58f2-4fe2-b808-6de78d89886c status: code: 200 message: OK @@ -3290,7 +3250,7 @@ interactions: ParameterSetName: - --resource-group --name --peering-name --path User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/azureprivatepeering/routeTables/primary?api-version=2020-11-01 response: @@ -3304,11 +3264,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:49:23 GMT + - Thu, 25 Mar 2021 08:11:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/da4502c8-30f8-4700-80d4-1d1275d15779?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/a69749eb-c92e-401a-a23e-d57219c176a8?api-version=2020-11-01 pragma: - no-cache server: @@ -3319,7 +3279,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 51b89e9d-8b60-4624-8724-70d136f70953 + - b7d053b6-1f7a-4b02-abed-d59099abb0d9 status: code: 202 message: Accepted @@ -3337,9 +3297,109 @@ interactions: ParameterSetName: - --resource-group --name --peering-name --path User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/a69749eb-c92e-401a-a23e-d57219c176a8?api-version=2020-11-01 + response: + body: + string: "{\r\n \"value\": []\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '19' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Mar 2021 08:11:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/a69749eb-c92e-401a-a23e-d57219c176a8?api-version=2020-11-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b7d053b6-1f7a-4b02-abed-d59099abb0d9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network express-route list-route-tables-summary + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --resource-group --name --peering-name --path + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/azureprivatepeering/routeTablesSummary/primary?api-version=2020-11-01 + response: + body: + string: 'null' + headers: + cache-control: + - no-cache + content-length: + - '4' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Mar 2021 08:11:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/80db78e9-be38-4002-bf21-a0a80cf384bf?api-version=2020-11-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d2f9499a-da2c-42d8-b336-d0934ccf1cce + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network express-route list-route-tables-summary + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --peering-name --path + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/da4502c8-30f8-4700-80d4-1d1275d15779?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/80db78e9-be38-4002-bf21-a0a80cf384bf?api-version=2020-11-01 response: body: string: "{\r\n \"value\": []\r\n}" @@ -3351,11 +3411,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:49:33 GMT + - Thu, 25 Mar 2021 08:11:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/da4502c8-30f8-4700-80d4-1d1275d15779?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/80db78e9-be38-4002-bf21-a0a80cf384bf?api-version=2020-11-01 pragma: - no-cache server: @@ -3370,7 +3430,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 51b89e9d-8b60-4624-8724-70d136f70953 + - d2f9499a-da2c-42d8-b336-d0934ccf1cce status: code: 200 message: OK @@ -3390,7 +3450,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2020-11-01 response: @@ -3400,17 +3460,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7d732943-9176-45cd-b7c5-032d8db37c88?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5c5f8ace-979a-4b25-890c-4d50344d930c?api-version=2020-11-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Mar 2021 05:49:35 GMT + - Thu, 25 Mar 2021 08:11:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/7d732943-9176-45cd-b7c5-032d8db37c88?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/5c5f8ace-979a-4b25-890c-4d50344d930c?api-version=2020-11-01 pragma: - no-cache server: @@ -3421,9 +3481,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 75a45e86-1cd2-44a3-b9f2-6db1a9450321 + - e4727337-adc9-49a4-adf4-c1ac001c1b0a x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14999' status: code: 202 message: Accepted @@ -3441,9 +3501,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7d732943-9176-45cd-b7c5-032d8db37c88?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5c5f8ace-979a-4b25-890c-4d50344d930c?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3455,7 +3515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:49:46 GMT + - Thu, 25 Mar 2021 08:11:37 GMT expires: - '-1' pragma: @@ -3472,7 +3532,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0c25320e-bfc6-4ab0-b5b8-51ea3782a52d + - 9931ba21-6c24-4f8b-85f6-26ca4a1ac3db status: code: 200 message: OK @@ -3490,7 +3550,7 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route000001/providers/Microsoft.Network/expressRouteCircuits?api-version=2020-11-01 response: @@ -3504,7 +3564,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:49:47 GMT + - Thu, 25 Mar 2021 08:11:38 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route_global_reach.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route_global_reach.yaml index 594018865cd..964720ea0c1 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route_global_reach.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route_global_reach.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_express_route_global_reach000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001","name":"cli_test_express_route_global_reach000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-24T15:23:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001","name":"cli_test_express_route_global_reach000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-25T07:57:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:16 GMT + - Thu, 25 Mar 2021 07:57:42 GMT expires: - '-1' pragma: @@ -64,16 +64,16 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"er1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1\",\r\n - \ \"etag\": \"W/\\\"c2c31c4f-d796-4de2-a595-35e067043e9e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"308e0d66-ff1d-471b-ade3-be8be0942c2a\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"f28a80de-2eb1-4588-9202-d25dee2f7587\",\r\n \"peerings\": [],\r\n \"authorizations\": + \"9cc1e13a-0e5c-4248-83b0-fc7b41507dd8\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Disabled\",\r\n \"allowClassicOperations\": @@ -86,7 +86,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/02755d28-cc2b-4cbd-b5a1-657b750cec26?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ce690c66-a948-4e00-9629-206136167f6a?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -94,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:22 GMT + - Thu, 25 Mar 2021 07:57:48 GMT expires: - '-1' pragma: @@ -107,9 +107,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c7348ed6-20e0-4d6f-913c-24a8f4cbe29d + - 9b4e3256-ecfd-4044-91ae-c87bc3ade9d7 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -127,58 +127,9 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/02755d28-cc2b-4cbd-b5a1-657b750cec26?api-version=2020-11-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 24 Feb 2021 15:23:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 7ea8641e-b211-4708-b7f2-16d7cf484534 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network express-route create - Connection: - - keep-alive - ParameterSetName: - - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier - User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/02755d28-cc2b-4cbd-b5a1-657b750cec26?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ce690c66-a948-4e00-9629-206136167f6a?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -190,7 +141,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:43 GMT + - Thu, 25 Mar 2021 07:57:58 GMT expires: - '-1' pragma: @@ -207,7 +158,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7d7fb515-45e2-4a0d-a8c5-762606d07b07 + - 9413e4dd-3c90-4ba0-86eb-807c5ad770af status: code: 200 message: OK @@ -225,22 +176,22 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"er1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1\",\r\n - \ \"etag\": \"W/\\\"c00a5bae-8f2c-416d-880e-a6ad3b9ccd84\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"299f4862-71a8-4814-9e9f-e0746cf057a5\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"f28a80de-2eb1-4588-9202-d25dee2f7587\",\r\n \"peerings\": [],\r\n \"authorizations\": + \"9cc1e13a-0e5c-4248-83b0-fc7b41507dd8\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"allowClassicOperations\": - false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"629d8466-611c-43fd-b46d-8228596cf447\",\r\n + false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"98f6720d-99fb-490a-a0b0-fb3d7a5377f6\",\r\n \ \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"allowGlobalReach\": - false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 2\r\n },\r\n + false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 5\r\n },\r\n \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \ \"family\": \"MeteredData\"\r\n }\r\n}" headers: @@ -251,7 +202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:43 GMT + - Thu, 25 Mar 2021 07:57:58 GMT expires: - '-1' pragma: @@ -268,7 +219,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1b8fb049-5ded-4adb-9194-3e3d4cefb7a4 + - d52a0cff-f193-4e4f-a898-da7a7cecfe0e status: code: 200 message: OK @@ -293,13 +244,13 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering\",\r\n - \ \"etag\": \"W/\\\"17bab84e-a4ea-4b4d-a164-dd0a501993ad\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"28a3dfe1-764b-46aa-a1e2-f3050914f408\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \ \"azureASN\": 0,\r\n \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\": \"102.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"103.0.0.0/30\",\r\n @@ -308,7 +259,7 @@ interactions: \ \"type\": \"Microsoft.Network/expressRouteCircuits/peerings\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/de0b417d-002f-4a14-8c3b-9d043ddaea72?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/71068260-a619-4f60-8cac-c6e431f6118a?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -316,7 +267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:45 GMT + - Thu, 25 Mar 2021 07:58:00 GMT expires: - '-1' pragma: @@ -329,7 +280,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5c82d2f5-757c-4f3b-87f6-87959e271c8d + - 71d450c6-e133-434f-b1a7-d660b385f5a9 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -350,9 +301,9 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/de0b417d-002f-4a14-8c3b-9d043ddaea72?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/71068260-a619-4f60-8cac-c6e431f6118a?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -364,7 +315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:55 GMT + - Thu, 25 Mar 2021 07:58:10 GMT expires: - '-1' pragma: @@ -381,7 +332,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9b9e4155-ba81-4dac-980b-e33af970768a + - d39cb4a9-7c4b-4192-afaa-02d2fb9f94c9 status: code: 200 message: OK @@ -400,13 +351,13 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering\",\r\n - \ \"etag\": \"W/\\\"a12487ad-fd2f-46e0-a667-346310815795\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"b0a44fd3-fd4b-4ec6-be46-1b31a2781cc2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \ \"azureASN\": 12076,\r\n \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\": \"102.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"103.0.0.0/30\",\r\n @@ -422,7 +373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:56 GMT + - Thu, 25 Mar 2021 07:58:10 GMT expires: - '-1' pragma: @@ -439,7 +390,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 217041dc-c806-48e6-93f5-7a55909ceafd + - 62beb794-b089-4248-873f-7d6c084d7a74 status: code: 200 message: OK @@ -457,15 +408,15 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_express_route_global_reach000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001","name":"cli_test_express_route_global_reach000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-24T15:23:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001","name":"cli_test_express_route_global_reach000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-25T07:57:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -474,7 +425,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:57 GMT + - Thu, 25 Mar 2021 07:58:11 GMT expires: - '-1' pragma: @@ -508,16 +459,16 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er2?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"er2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er2\",\r\n - \ \"etag\": \"W/\\\"a3c804c2-1c1f-493c-a189-08eee01cfb15\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"68d348a9-bfb2-4d83-b000-71c388c9e49c\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"82a598a6-71c4-4d4d-933c-1891f17c5d0d\",\r\n \"peerings\": [],\r\n \"authorizations\": + \"c999b35a-f23d-455e-b166-a235df4bdd6e\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Test Provider NW\",\r\n \"peeringLocation\": \"Denver Test\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Disabled\",\r\n \"allowClassicOperations\": @@ -530,7 +481,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1076d7ba-55f5-4293-a847-fd3fbd149967?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/608ee46f-3b05-4ee8-934e-8ad317a67f4a?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -538,7 +489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:03 GMT + - Thu, 25 Mar 2021 07:58:17 GMT expires: - '-1' pragma: @@ -551,9 +502,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4d2226eb-4c13-4531-8afe-aded842e9470 + - 3c179ba9-ea5a-45eb-bb18-e167eef71731 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -571,9 +522,9 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1076d7ba-55f5-4293-a847-fd3fbd149967?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/608ee46f-3b05-4ee8-934e-8ad317a67f4a?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -585,7 +536,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:13 GMT + - Thu, 25 Mar 2021 07:58:28 GMT expires: - '-1' pragma: @@ -602,7 +553,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5f80b31c-97b0-428c-aba0-5a6cd0942b18 + - 377c035f-9e81-4b8b-a389-4332594c63c1 status: code: 200 message: OK @@ -620,20 +571,20 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er2?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"er2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er2\",\r\n - \ \"etag\": \"W/\\\"250765b3-ca06-4439-a0bc-c6ac1e02fcbf\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e5999a31-db9d-48eb-9d5c-b84014946016\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"82a598a6-71c4-4d4d-933c-1891f17c5d0d\",\r\n \"peerings\": [],\r\n \"authorizations\": + \"c999b35a-f23d-455e-b166-a235df4bdd6e\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Test Provider NW\",\r\n \"peeringLocation\": \"Denver Test\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"allowClassicOperations\": - false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"9396ea4e-17b4-4da6-9547-15fe9e916ccc\",\r\n + false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"5ce6a160-d41a-4267-abd6-6b6da47d952f\",\r\n \ \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"allowGlobalReach\": false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 2\r\n },\r\n \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n @@ -646,7 +597,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:13 GMT + - Thu, 25 Mar 2021 07:58:29 GMT expires: - '-1' pragma: @@ -663,7 +614,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 79b407bd-f6d8-4b3e-99d2-b7ce14671028 + - d2d90c74-a8e6-4a82-b3df-17cb90a9ba8b status: code: 200 message: OK @@ -688,13 +639,13 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er2/peerings/AzurePrivatePeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er2/peerings/AzurePrivatePeering\",\r\n - \ \"etag\": \"W/\\\"ab3331bf-69a8-4e93-8ee2-c7d39d2a0457\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"62414369-bd89-4a29-94b6-afa440c6b80a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \ \"azureASN\": 0,\r\n \"peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n @@ -703,7 +654,7 @@ interactions: \ \"type\": \"Microsoft.Network/expressRouteCircuits/peerings\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3f7ad653-0b27-4628-a3f1-6fa791c2cbd4?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dfd9c6c4-da02-49d9-b7c3-b0568ffb9a1d?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -711,7 +662,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:16 GMT + - Thu, 25 Mar 2021 07:58:29 GMT expires: - '-1' pragma: @@ -724,7 +675,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ab82d105-ac47-46be-ba7a-a7488c49282e + - a1147503-7592-4ef3-8275-8107c3647e0e x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -745,9 +696,9 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3f7ad653-0b27-4628-a3f1-6fa791c2cbd4?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dfd9c6c4-da02-49d9-b7c3-b0568ffb9a1d?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -759,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:26 GMT + - Thu, 25 Mar 2021 07:58:40 GMT expires: - '-1' pragma: @@ -776,7 +727,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c08d5c8d-ea08-4a94-be4c-a51138b3a42b + - 45b8c1ac-4292-4fdc-ad52-d447a310227d status: code: 200 message: OK @@ -795,13 +746,13 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er2/peerings/AzurePrivatePeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er2/peerings/AzurePrivatePeering\",\r\n - \ \"etag\": \"W/\\\"b4c234b2-41df-4970-8f68-b2a4551bc732\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"75b35adc-d355-4450-9f6f-87cacf0a6587\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \ \"azureASN\": 12076,\r\n \"peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n @@ -818,7 +769,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:26 GMT + - Thu, 25 Mar 2021 07:58:41 GMT expires: - '-1' pragma: @@ -835,7 +786,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 208913ba-9e39-4943-b50d-8a1ccaa24616 + - c7b62630-0a84-4a3c-9a89-a91d72a6cbf7 status: code: 200 message: OK @@ -859,13 +810,13 @@ interactions: ParameterSetName: - -g --circuit-name --peering-name -n --peer-circuit --address-prefix User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering/connections/conn12?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"conn12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering/connections/conn12\",\r\n - \ \"etag\": \"W/\\\"40abcdc7-1960-4e1a-a53f-7584f12da711\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"6d7a8e26-7cec-4c32-94ef-e7947824047d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"expressRouteCircuitPeering\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering\"\r\n \ },\r\n \"peerExpressRouteCircuitPeering\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er2/peerings/AzurePrivatePeering\"\r\n @@ -873,7 +824,7 @@ interactions: \"Disconnected\"\r\n },\r\n \"type\": \"Microsoft.Network/expressRouteCircuits/peerings/connections\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c6471fb3-447c-47e3-88be-ba27e2e7b223?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0daec1f8-d578-4363-9006-c0fd207adf01?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -881,7 +832,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:28 GMT + - Thu, 25 Mar 2021 07:58:42 GMT expires: - '-1' pragma: @@ -894,9 +845,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e5e18a7f-904f-4d9a-a527-0942551f01ce + - 2764f24c-8346-4812-bbc6-9fa0590dece7 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -914,14 +865,14 @@ interactions: ParameterSetName: - -g --circuit-name --peering-name -n --peer-circuit --address-prefix User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c6471fb3-447c-47e3-88be-ba27e2e7b223?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0daec1f8-d578-4363-9006-c0fd207adf01?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Failed\",\r\n \"error\": {\r\n \"code\": \"InitiatingCircuitNotProvisioned\",\r\n \ \"message\": \"Put Global Reach Connection Initiating Circuit Subscription - = 0b1f6471-1bf0-4dda-aec3-cb9272f09590, ServiceKey = 629d8466-611c-43fd-b46d-8228596cf447 + = 0b1f6471-1bf0-4dda-aec3-cb9272f09590, ServiceKey = 98f6720d-99fb-490a-a0b0-fb3d7a5377f6 is Not Provisioned. Current Status NotProvisioned\",\r\n \"details\": []\r\n \ }\r\n}" headers: @@ -932,7 +883,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:38 GMT + - Thu, 25 Mar 2021 07:58:52 GMT expires: - '-1' pragma: @@ -949,7 +900,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8b2a4273-55c3-413a-9c23-2c9fff609643 + - 3f884576-57c2-4d51-b541-647200453ff5 status: code: 200 message: OK @@ -967,13 +918,13 @@ interactions: ParameterSetName: - -g --circuit-name --peering-name -n User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering/connections/conn12?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"conn12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering/connections/conn12\",\r\n - \ \"etag\": \"W/\\\"b8381148-2b29-4244-bd77-2daa1f04493f\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"73fd0577-72d0-4d2b-b92c-ec948387948e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"expressRouteCircuitPeering\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering\"\r\n \ },\r\n \"peerExpressRouteCircuitPeering\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er2/peerings/AzurePrivatePeering\"\r\n @@ -987,9 +938,67 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:39 GMT + - Thu, 25 Mar 2021 07:58:53 GMT etag: - - W/"b8381148-2b29-4244-bd77-2daa1f04493f" + - W/"73fd0577-72d0-4d2b-b92c-ec948387948e" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - af2d11a4-328e-480e-ac80-bcab20a29d5a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network express-route peering connection list + Connection: + - keep-alive + ParameterSetName: + - -g --circuit-name --peering-name + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering/connections?api-version=2020-11-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"conn12\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering/connections/conn12\",\r\n + \ \"etag\": \"W/\\\"73fd0577-72d0-4d2b-b92c-ec948387948e\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Failed\",\r\n \"expressRouteCircuitPeering\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering\"\r\n + \ },\r\n \"peerExpressRouteCircuitPeering\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er2/peerings/AzurePrivatePeering\"\r\n + \ },\r\n \"addressPrefix\": \"104.0.0.0/29\",\r\n \"circuitConnectionStatus\": + \"Connected\"\r\n },\r\n \"type\": \"Microsoft.Network/expressRouteCircuits/peerings/connections\"\r\n + \ }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1221' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Mar 2021 07:58:54 GMT expires: - '-1' pragma: @@ -1006,7 +1015,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4f90424e-27b8-4c16-86a7-e92127cc4380 + - dbda213f-4f98-46c0-a679-8c0534eb64ef status: code: 200 message: OK @@ -1026,7 +1035,7 @@ interactions: ParameterSetName: - -g --circuit-name --peering-name -n User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_global_reach000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering/connections/conn12?api-version=2020-11-01 response: @@ -1034,17 +1043,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/501857c0-f973-43d8-bdf6-b9bee253a445?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/753dbd35-73ac-4617-9b8f-8f283137b3ab?api-version=2020-11-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 24 Feb 2021 15:24:41 GMT + - Thu, 25 Mar 2021 07:58:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/501857c0-f973-43d8-bdf6-b9bee253a445?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/753dbd35-73ac-4617-9b8f-8f283137b3ab?api-version=2020-11-01 pragma: - no-cache server: @@ -1055,7 +1064,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b2b9400f-fd92-479a-88ab-c21b523cddbb + - e9f37cb4-0048-4462-9a8f-8e88ecd16c94 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -1075,9 +1084,9 @@ interactions: ParameterSetName: - -g --circuit-name --peering-name -n User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/501857c0-f973-43d8-bdf6-b9bee253a445?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/753dbd35-73ac-4617-9b8f-8f283137b3ab?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1089,7 +1098,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:51 GMT + - Thu, 25 Mar 2021 07:59:04 GMT expires: - '-1' pragma: @@ -1106,7 +1115,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8353807d-e69a-4966-a6a8-26f8748b610e + - 979500e6-a00f-44fa-92d6-486c3dab15c7 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route_ipv6_peering.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route_ipv6_peering.yaml index db2e595c4b0..b3d1c85420d 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route_ipv6_peering.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route_ipv6_peering.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g -n --bandwidth --provider --peering-location --sku-tier User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_express_route_ipv6_peering000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001","name":"cli_test_express_route_ipv6_peering000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T05:49:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001","name":"cli_test_express_route_ipv6_peering000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-25T08:01:10Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:49:54 GMT + - Thu, 25 Mar 2021 08:01:15 GMT expires: - '-1' pragma: @@ -64,16 +64,16 @@ interactions: ParameterSetName: - -g -n --bandwidth --provider --peering-location --sku-tier User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\",\r\n - \ \"etag\": \"W/\\\"76da4624-dd9b-4ddc-a09d-446744fdf3a2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7d94cfcf-b769-4668-9e78-06c1bcaa976c\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"4cd91433-82ae-400a-bb4d-bb3db2666d95\",\r\n \"peerings\": [],\r\n \"authorizations\": + \"900bc3cb-09aa-4ad7-a40f-a9e3ee8d72b4\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Ibiza Test Provider\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Disabled\",\r\n \"allowClassicOperations\": @@ -86,7 +86,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bfc2f8d0-409b-4c1b-bccb-0370b970f260?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0816d719-2a85-4bfe-b82c-cca69a655bbb?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -94,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:49:59 GMT + - Thu, 25 Mar 2021 08:01:20 GMT expires: - '-1' pragma: @@ -107,9 +107,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 03dec9d8-e28e-4c17-9979-3ab6fe924bb8 + - c2865515-0084-4c7b-b083-1534dc5ec312 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' status: code: 201 message: Created @@ -127,9 +127,9 @@ interactions: ParameterSetName: - -g -n --bandwidth --provider --peering-location --sku-tier User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bfc2f8d0-409b-4c1b-bccb-0370b970f260?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0816d719-2a85-4bfe-b82c-cca69a655bbb?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -141,7 +141,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:50:10 GMT + - Thu, 25 Mar 2021 08:01:30 GMT expires: - '-1' pragma: @@ -158,7 +158,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 774fabb6-9e6d-4e69-882b-1e253d1096d0 + - 8ae22800-65ea-4c64-a29b-ceea9001e192 status: code: 200 message: OK @@ -176,9 +176,9 @@ interactions: ParameterSetName: - -g -n --bandwidth --provider --peering-location --sku-tier User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bfc2f8d0-409b-4c1b-bccb-0370b970f260?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0816d719-2a85-4bfe-b82c-cca69a655bbb?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -190,7 +190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:50:21 GMT + - Thu, 25 Mar 2021 08:01:40 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e81b96ca-3e95-45fc-ba0c-c9997f4fc863 + - 716871e1-f043-4a32-b5ee-0c08c3371810 status: code: 200 message: OK @@ -225,20 +225,20 @@ interactions: ParameterSetName: - -g -n --bandwidth --provider --peering-location --sku-tier User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"circuit1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1\",\r\n - \ \"etag\": \"W/\\\"9cedd824-5856-4fad-869a-901d86773407\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"312c60ee-6420-45de-8de3-e6d89fb54983\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"4cd91433-82ae-400a-bb4d-bb3db2666d95\",\r\n \"peerings\": [],\r\n \"authorizations\": + \"900bc3cb-09aa-4ad7-a40f-a9e3ee8d72b4\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Ibiza Test Provider\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"allowClassicOperations\": - false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"6caafc23-1091-4663-9e0a-5aa0abf422d3\",\r\n + false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"7957132b-356f-4f72-bb19-f01a41f87e70\",\r\n \ \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"allowGlobalReach\": false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 4\r\n },\r\n \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n @@ -251,7 +251,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:50:22 GMT + - Thu, 25 Mar 2021 08:01:41 GMT expires: - '-1' pragma: @@ -268,7 +268,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ab9b3b35-0008-4c3c-a4f5-4f8db12844ca + - f77ff93e-6d1b-43f9-bec0-c346b5612a68 status: code: 200 message: OK @@ -294,13 +294,13 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet --advertised-public-prefixes --customer-asn --routing-registry-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\",\r\n - \ \"etag\": \"W/\\\"e2136556-7fb3-4f06-99cf-b9df00ee76b9\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"a704bf4a-bad3-4932-9a12-39f36441d3f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"peeringType\": \"MicrosoftPeering\",\r\n \ \"azureASN\": 0,\r\n \"peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n @@ -312,7 +312,7 @@ interactions: [],\r\n \"peeredConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/expressRouteCircuits/peerings\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2daa63e6-6b8e-4be1-a6a4-722fcca5c86f?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4a0b4c77-04e5-4c31-a398-96d1a69ca50c?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -320,7 +320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:50:23 GMT + - Thu, 25 Mar 2021 08:01:42 GMT expires: - '-1' pragma: @@ -333,9 +333,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 44e548af-7b57-4669-974f-41fdc44d6ec4 + - 0e2d301c-c8dd-4db5-be02-a5d16d1d1b2b x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 201 message: Created @@ -354,9 +354,9 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet --advertised-public-prefixes --customer-asn --routing-registry-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2daa63e6-6b8e-4be1-a6a4-722fcca5c86f?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4a0b4c77-04e5-4c31-a398-96d1a69ca50c?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -368,7 +368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:50:34 GMT + - Thu, 25 Mar 2021 08:01:52 GMT expires: - '-1' pragma: @@ -385,7 +385,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 44e7c998-a2b1-4707-8fd6-b262db477639 + - ea1c0322-599e-4ab9-bac5-8364c0cb9ebb status: code: 200 message: OK @@ -404,9 +404,9 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet --advertised-public-prefixes --customer-asn --routing-registry-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2daa63e6-6b8e-4be1-a6a4-722fcca5c86f?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4a0b4c77-04e5-4c31-a398-96d1a69ca50c?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -418,7 +418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:50:44 GMT + - Thu, 25 Mar 2021 08:02:02 GMT expires: - '-1' pragma: @@ -435,7 +435,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 002e1e8f-ddae-4d05-8201-b964afe91249 + - 9a843867-8c85-40a4-8513-5e6eab676486 status: code: 200 message: OK @@ -454,13 +454,13 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet --advertised-public-prefixes --customer-asn --routing-registry-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\",\r\n - \ \"etag\": \"W/\\\"90cb9006-4410-45dd-9788-19ff2aab42ac\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"a3be375e-29c7-4c73-acaa-433e16777364\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringType\": \"MicrosoftPeering\",\r\n \ \"azureASN\": 12076,\r\n \"peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n @@ -480,7 +480,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:50:45 GMT + - Thu, 25 Mar 2021 08:02:03 GMT expires: - '-1' pragma: @@ -497,7 +497,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f4fbd810-983a-4cc6-9cc9-1a00f0829bb2 + - fe26ff3d-1e44-4a68-a420-3e085e07118a status: code: 200 message: OK @@ -516,13 +516,13 @@ interactions: - -g --circuit-name -n --ip-version --primary-peer-subnet --secondary-peer-subnet --advertised-public-prefixes --customer-asn --routing-registry-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\",\r\n - \ \"etag\": \"W/\\\"90cb9006-4410-45dd-9788-19ff2aab42ac\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"a3be375e-29c7-4c73-acaa-433e16777364\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringType\": \"MicrosoftPeering\",\r\n \ \"azureASN\": 12076,\r\n \"peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n @@ -542,7 +542,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:50:45 GMT + - Thu, 25 Mar 2021 08:02:03 GMT expires: - '-1' pragma: @@ -559,7 +559,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6d99ae25-f296-4d5e-b808-76476e618c89 + - d2631fef-0ef7-4308-9dfe-73d64a0e76ab status: code: 200 message: OK @@ -591,13 +591,13 @@ interactions: - -g --circuit-name -n --ip-version --primary-peer-subnet --secondary-peer-subnet --advertised-public-prefixes --customer-asn --routing-registry-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\",\r\n - \ \"etag\": \"W/\\\"ca2f0ff4-3a9f-4149-ac70-42932cc41ea3\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"6d5f47c5-c39d-495f-a0a5-5aea0505aa30\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"peeringType\": \"MicrosoftPeering\",\r\n \ \"azureASN\": 12076,\r\n \"peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n @@ -617,7 +617,7 @@ interactions: []\r\n },\r\n \"type\": \"Microsoft.Network/expressRouteCircuits/peerings\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/07214da5-3e89-4fc4-8254-27f14a50faf8?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c3c0b85f-c6c0-4dde-b540-0cbba2d0cf26?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -625,7 +625,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:50:46 GMT + - Thu, 25 Mar 2021 08:02:04 GMT expires: - '-1' pragma: @@ -642,9 +642,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a7776df-2215-4ecf-9c3a-072d1da83132 + - 8e79f2df-635f-4249-a4f8-e9419ba319fd x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1199' status: code: 200 message: OK @@ -663,9 +663,9 @@ interactions: - -g --circuit-name -n --ip-version --primary-peer-subnet --secondary-peer-subnet --advertised-public-prefixes --customer-asn --routing-registry-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/07214da5-3e89-4fc4-8254-27f14a50faf8?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c3c0b85f-c6c0-4dde-b540-0cbba2d0cf26?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -677,7 +677,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:50:56 GMT + - Thu, 25 Mar 2021 08:02:15 GMT expires: - '-1' pragma: @@ -694,7 +694,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 68d47278-a4e0-4c83-b3ed-85eb4b62e016 + - ec8dd5f6-71aa-4c20-b4d0-b9c8b3e59435 status: code: 200 message: OK @@ -713,9 +713,9 @@ interactions: - -g --circuit-name -n --ip-version --primary-peer-subnet --secondary-peer-subnet --advertised-public-prefixes --customer-asn --routing-registry-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/07214da5-3e89-4fc4-8254-27f14a50faf8?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c3c0b85f-c6c0-4dde-b540-0cbba2d0cf26?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -727,7 +727,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:51:07 GMT + - Thu, 25 Mar 2021 08:02:25 GMT expires: - '-1' pragma: @@ -744,7 +744,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a6531f7a-a425-4f24-8345-7c1e9aa4e1ed + - ace7c4f4-4ed4-4e97-93ad-1c224e59c882 status: code: 200 message: OK @@ -763,13 +763,13 @@ interactions: - -g --circuit-name -n --ip-version --primary-peer-subnet --secondary-peer-subnet --advertised-public-prefixes --customer-asn --routing-registry-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\",\r\n - \ \"etag\": \"W/\\\"b737bded-8602-40c4-81a8-884eb38e52ac\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"7d7e367f-f624-4369-894d-937400de07f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringType\": \"MicrosoftPeering\",\r\n \ \"azureASN\": 12076,\r\n \"peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n @@ -795,7 +795,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:51:07 GMT + - Thu, 25 Mar 2021 08:02:25 GMT expires: - '-1' pragma: @@ -812,7 +812,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0e0e21df-4551-4869-bdad-2b7594a136d4 + - 0de19c63-8569-4d18-8bfd-bbf8bd42a738 status: code: 200 message: OK @@ -830,13 +830,13 @@ interactions: ParameterSetName: - -g --circuit-name -n User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"MicrosoftPeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering\",\r\n - \ \"etag\": \"W/\\\"b737bded-8602-40c4-81a8-884eb38e52ac\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"7d7e367f-f624-4369-894d-937400de07f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringType\": \"MicrosoftPeering\",\r\n \ \"azureASN\": 12076,\r\n \"peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n @@ -862,7 +862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Mar 2021 05:51:09 GMT + - Thu, 25 Mar 2021 08:02:26 GMT expires: - '-1' pragma: @@ -879,7 +879,57 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 076923e6-cada-4a8a-b399-aea5661bf68c + - 34892328-542f-44d2-867f-6166cb4854a9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network express-route peering get-stats + Connection: + - keep-alive + ParameterSetName: + - -g --circuit-name -n + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_ipv6_peering000001/providers/Microsoft.Network/expressRouteCircuits/circuit1/peerings/MicrosoftPeering/stats?api-version=2020-11-01 + response: + body: + string: "{\r\n \"primaryBytesIn\": 0,\r\n \"primaryBytesOut\": 0,\r\n \"secondaryBytesIn\": + 0,\r\n \"secondaryBytesOut\": 0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '105' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Mar 2021 08:02:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f7bf4468-1c95-4603-a1ee-415672c0fea2 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route_peer_connection.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route_peer_connection.yaml index 0165836ba82..0f27f7a2318 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route_peer_connection.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_express_route_peer_connection.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_express_route_peer_connection000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001","name":"cli_test_express_route_peer_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-24T15:23:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001","name":"cli_test_express_route_peer_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-25T07:55:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:16 GMT + - Thu, 25 Mar 2021 07:55:31 GMT expires: - '-1' pragma: @@ -64,16 +64,16 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"er1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er1\",\r\n - \ \"etag\": \"W/\\\"10907f52-a24a-4194-aeea-946935424e86\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9274ca71-2800-492f-b082-3cdd7ebdfca8\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"fce6cb30-7b73-446f-a309-cb1d638af49d\",\r\n \"peerings\": [],\r\n \"authorizations\": + \"63d235ff-8f59-4368-b09e-67f3f942642e\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Disabled\",\r\n \"allowClassicOperations\": @@ -86,7 +86,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a59004d5-cc01-467c-a5da-1cb5cfe2e3ce?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ce37c55-b9e0-4bd4-b2eb-e864eba8fa2e?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -94,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:23 GMT + - Thu, 25 Mar 2021 07:55:39 GMT expires: - '-1' pragma: @@ -107,9 +107,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c23d6fc9-b4e3-483e-bd5e-e4db0745e171 + - dd3b710d-6ad9-4be9-8e5e-2d45ed05882e x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -127,58 +127,9 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a59004d5-cc01-467c-a5da-1cb5cfe2e3ce?api-version=2020-11-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 24 Feb 2021 15:23:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 1d1b6060-ae34-4826-8cf9-81f68fdbe351 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network express-route create - Connection: - - keep-alive - ParameterSetName: - - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier - User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a59004d5-cc01-467c-a5da-1cb5cfe2e3ce?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ce37c55-b9e0-4bd4-b2eb-e864eba8fa2e?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -190,7 +141,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:44 GMT + - Thu, 25 Mar 2021 07:55:49 GMT expires: - '-1' pragma: @@ -207,7 +158,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 103330fe-f91e-4e8f-b762-8dc50489fe25 + - b4fad338-8720-4cb6-8bfe-8360ee28f6f8 status: code: 200 message: OK @@ -225,22 +176,22 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er1?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"er1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er1\",\r\n - \ \"etag\": \"W/\\\"1a4aee1f-e134-4228-b7e6-63d4f5868838\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"bcc1aec5-a537-46b5-af91-a80cbc17c067\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"fce6cb30-7b73-446f-a309-cb1d638af49d\",\r\n \"peerings\": [],\r\n \"authorizations\": + \"63d235ff-8f59-4368-b09e-67f3f942642e\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Microsoft ER Test\",\r\n \"peeringLocation\": \"Area51\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"allowClassicOperations\": - false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"b6e5b25e-e52a-446f-80d2-fde758365902\",\r\n + false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"b052ca58-10e5-4576-94f1-1c2f2b6eb428\",\r\n \ \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"allowGlobalReach\": - false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 3\r\n },\r\n + false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 5\r\n },\r\n \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \ \"family\": \"MeteredData\"\r\n }\r\n}" headers: @@ -251,7 +202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:44 GMT + - Thu, 25 Mar 2021 07:55:49 GMT expires: - '-1' pragma: @@ -268,7 +219,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 49738155-a431-422d-9b40-b5024f92a789 + - 10f731e4-9519-461d-bd61-ac4a637e6fd4 status: code: 200 message: OK @@ -293,13 +244,13 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering\",\r\n - \ \"etag\": \"W/\\\"0b0d5c43-10eb-4160-86a0-7166db8c4edf\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"f2f667d8-b37e-445b-80c7-1bde6271b670\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \ \"azureASN\": 0,\r\n \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\": \"102.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"103.0.0.0/30\",\r\n @@ -308,7 +259,7 @@ interactions: \ \"type\": \"Microsoft.Network/expressRouteCircuits/peerings\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/861f59d5-5e74-4005-b4d9-14fc93859be7?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c852282-bfa8-4be6-a925-54066473b92d?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -316,7 +267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:45 GMT + - Thu, 25 Mar 2021 07:55:50 GMT expires: - '-1' pragma: @@ -329,9 +280,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ff439f3f-bef4-499a-8258-c176c3fd608e + - 42edba27-7a9a-4da1-9dbc-d49493d86a26 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -350,9 +301,9 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/861f59d5-5e74-4005-b4d9-14fc93859be7?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c852282-bfa8-4be6-a925-54066473b92d?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -364,7 +315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:55 GMT + - Thu, 25 Mar 2021 07:56:00 GMT expires: - '-1' pragma: @@ -381,7 +332,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f192e0d1-ce39-478e-b42c-1c8f03fa8a92 + - 7efd2065-2b33-43ae-9e27-b71b7f2093fc status: code: 200 message: OK @@ -400,13 +351,13 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering\",\r\n - \ \"etag\": \"W/\\\"9183ac8b-700e-48bb-af42-bf213bf23de3\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"1855bbfc-1769-4426-84b2-d2037af7adcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \ \"azureASN\": 12076,\r\n \"peerASN\": 10001,\r\n \"primaryPeerAddressPrefix\": \"102.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"103.0.0.0/30\",\r\n @@ -422,7 +373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:56 GMT + - Thu, 25 Mar 2021 07:56:01 GMT expires: - '-1' pragma: @@ -439,7 +390,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 33197d66-ef88-48a8-826f-7b8c360794a9 + - fc7e42bd-60bc-4b2c-b362-f74a9cf3c7fe status: code: 200 message: OK @@ -457,15 +408,15 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_express_route_peer_connection000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001","name":"cli_test_express_route_peer_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-24T15:23:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001","name":"cli_test_express_route_peer_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-25T07:55:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -474,7 +425,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:23:57 GMT + - Thu, 25 Mar 2021 07:56:02 GMT expires: - '-1' pragma: @@ -508,16 +459,16 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er2?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"er2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er2\",\r\n - \ \"etag\": \"W/\\\"84fcd62e-acdb-4569-acd5-3b2281632e31\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e91b6881-119c-40ee-ab02-6fad53eb681a\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"7e0eff10-7fb8-422d-a5aa-5625024b386c\",\r\n \"peerings\": [],\r\n \"authorizations\": + \"664908de-98bc-434a-bfa9-36f4dfac779f\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Test Provider NW\",\r\n \"peeringLocation\": \"Denver Test\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Disabled\",\r\n \"allowClassicOperations\": @@ -530,7 +481,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/11b1b51a-bc18-4b52-959e-809cb9b04797?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e7bf2e06-2cc2-466d-a830-9f9c90b66a52?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -538,7 +489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:03 GMT + - Thu, 25 Mar 2021 07:56:08 GMT expires: - '-1' pragma: @@ -551,7 +502,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a85b3170-bc35-424f-a5f8-c39723c4235a + - 1d696ab8-71fc-4f94-80d3-eae095461b07 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -571,9 +522,9 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/11b1b51a-bc18-4b52-959e-809cb9b04797?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e7bf2e06-2cc2-466d-a830-9f9c90b66a52?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -585,7 +536,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:13 GMT + - Thu, 25 Mar 2021 07:56:19 GMT expires: - '-1' pragma: @@ -602,7 +553,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 58b7081c-4d61-4d6b-8575-45d3ddd27863 + - bc8c91ca-3a1a-4182-a221-f514785c7c80 status: code: 200 message: OK @@ -620,22 +571,22 @@ interactions: ParameterSetName: - -g -n --allow-global-reach --bandwidth --peering-location --provider --sku-tier User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er2?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"er2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er2\",\r\n - \ \"etag\": \"W/\\\"13336633-5c44-45a3-bd99-e0411026814f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3eb75251-2d44-453b-accf-da51fb129847\\\"\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"7e0eff10-7fb8-422d-a5aa-5625024b386c\",\r\n \"peerings\": [],\r\n \"authorizations\": + \"664908de-98bc-434a-bfa9-36f4dfac779f\",\r\n \"peerings\": [],\r\n \"authorizations\": [],\r\n \"serviceProviderProperties\": {\r\n \"serviceProviderName\": \"Test Provider NW\",\r\n \"peeringLocation\": \"Denver Test\",\r\n \"bandwidthInMbps\": 50\r\n },\r\n \"circuitProvisioningState\": \"Enabled\",\r\n \"allowClassicOperations\": - false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"46121855-a77b-4b38-a04a-a237d1b74fcb\",\r\n + false,\r\n \"gatewayManagerEtag\": \"\",\r\n \"serviceKey\": \"dd99ba66-0bf3-4e56-93c3-257da9bf8d96\",\r\n \ \"serviceProviderProvisioningState\": \"NotProvisioned\",\r\n \"allowGlobalReach\": - false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 3\r\n },\r\n + false,\r\n \"globalReachEnabled\": false,\r\n \"stag\": 2\r\n },\r\n \ \"sku\": {\r\n \"name\": \"Premium_MeteredData\",\r\n \"tier\": \"Premium\",\r\n \ \"family\": \"MeteredData\"\r\n }\r\n}" headers: @@ -646,7 +597,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:14 GMT + - Thu, 25 Mar 2021 07:56:20 GMT expires: - '-1' pragma: @@ -663,7 +614,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 375f2bc2-b53c-4c20-9972-64fc53aa696e + - 47c24ba4-708a-446c-aecf-ab0c5fbb088a status: code: 200 message: OK @@ -688,13 +639,13 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er2/peerings/AzurePrivatePeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er2/peerings/AzurePrivatePeering\",\r\n - \ \"etag\": \"W/\\\"04d09fb3-82a3-4611-bccb-4d28ed3ac6d0\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"da517aff-5be9-4685-bc18-3e36cf4ec43e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \ \"azureASN\": 0,\r\n \"peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n @@ -703,7 +654,7 @@ interactions: \ \"type\": \"Microsoft.Network/expressRouteCircuits/peerings\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d4351e88-6937-484b-87bf-b71e1e646521?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f89bac75-ad78-4467-8a08-f242b5980acc?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -711,7 +662,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:15 GMT + - Thu, 25 Mar 2021 07:56:21 GMT expires: - '-1' pragma: @@ -724,9 +675,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c45663d3-7676-4bf3-8761-7742a0d2d455 + - 9d33ff1f-933b-4cae-8cdc-90ac842bec8d x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -745,9 +696,9 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d4351e88-6937-484b-87bf-b71e1e646521?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f89bac75-ad78-4467-8a08-f242b5980acc?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -759,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:26 GMT + - Thu, 25 Mar 2021 07:56:31 GMT expires: - '-1' pragma: @@ -776,7 +727,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 47847bef-8f75-4aa6-8f7f-4f9ac673acf7 + - b0ded7af-fcea-4cdf-a9ed-21d479ef873c status: code: 200 message: OK @@ -795,13 +746,13 @@ interactions: - -g --circuit-name --peering-type --peer-asn --vlan-id --primary-peer-subnet --secondary-peer-subnet User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er2/peerings/AzurePrivatePeering?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"AzurePrivatePeering\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er2/peerings/AzurePrivatePeering\",\r\n - \ \"etag\": \"W/\\\"0c8c50c8-a192-40cb-80bd-0e533e2bc73a\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"e066dcd5-7623-4c9b-8b04-03dcf939a96d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peeringType\": \"AzurePrivatePeering\",\r\n \ \"azureASN\": 12076,\r\n \"peerASN\": 10002,\r\n \"primaryPeerAddressPrefix\": \"104.0.0.0/30\",\r\n \"secondaryPeerAddressPrefix\": \"105.0.0.0/30\",\r\n @@ -818,7 +769,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:27 GMT + - Thu, 25 Mar 2021 07:56:32 GMT expires: - '-1' pragma: @@ -835,7 +786,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d1109400-a655-42ac-ac75-2aeba2c4684d + - d60111eb-41bc-4680-8a60-54e806ea2ec8 status: code: 200 message: OK @@ -853,7 +804,7 @@ interactions: ParameterSetName: - -g --circuit-name --peering-name -n User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering/peerConnections/peconn12?api-version=2020-11-01 response: @@ -869,7 +820,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:28 GMT + - Thu, 25 Mar 2021 07:56:33 GMT expires: - '-1' pragma: @@ -882,7 +833,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 18c83734-e806-4241-8bcb-6bb1360ed25e + - 4da6f176-ecea-4c6f-990e-92dd21b05ece status: code: 404 message: Not Found @@ -900,7 +851,7 @@ interactions: ParameterSetName: - -g --circuit-name --peering-name User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_express_route_peer_connection000001/providers/Microsoft.Network/expressRouteCircuits/er1/peerings/AzurePrivatePeering/peerConnections?api-version=2020-11-01 response: @@ -914,7 +865,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 24 Feb 2021 15:24:30 GMT + - Thu, 25 Mar 2021 07:56:34 GMT expires: - '-1' pragma: @@ -931,7 +882,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 771081fe-c959-424a-b80a-3d98ed230f04 + - 386264bd-6023-4d6b-b54a-c0235333c960 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py index b9aec42b0a3..b281c1c01d8 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py @@ -2006,6 +2006,7 @@ def _test_express_route_auth(self): self.cmd('network express-route auth list --resource-group {rg} --circuit-name {er}', checks=self.is_empty()) + @record_only() # record_only as the express route is extremely expensive, contact service team for an available ER @ResourceGroupPreparer(name_prefix='cli_test_express_route') def test_network_express_route(self, resource_group): @@ -2157,6 +2158,7 @@ def test_network_express_route_port_generate_loa(self): class NetworkExpressRouteIPv6PeeringScenarioTest(ScenarioTest): + @record_only() # record_only as the express route is extremely expensive, contact service team for an available ER @ResourceGroupPreparer(name_prefix='cli_test_express_route_ipv6_peering') def test_network_express_route_ipv6_peering(self, resource_group): @@ -2178,6 +2180,7 @@ def test_network_express_route_ipv6_peering(self, resource_group): self.check('type(@)', 'object'), ]) + @record_only() # record_only as the express route is extremely expensive, contact service team for an available ER @ResourceGroupPreparer(name_prefix='cli_test_express_route_ipv6_peering2', location='eastus') def test_network_express_route_ipv6_peering2(self, resource_group): self.kwargs['er'] = 'test_circuit' From 874e7ee76549eebb067c0cd1b249b334cb5188bf Mon Sep 17 00:00:00 2001 From: kai ru <69238381+kairu-ms@users.noreply.github.com> Date: Thu, 25 Mar 2021 16:24:27 +0800 Subject: [PATCH 3/6] fix issue --- .../network/tests/hybrid_2018_03_01/test_network_commands.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py b/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py index d07145dceac..35fc38f19a5 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py @@ -795,7 +795,6 @@ def test_network_express_route(self, resource_group): # so we will just verify that the command makes it through the SDK without error. self.cmd('network express-route list-arp-tables --resource-group {rg} --name {er} --peering-name azureprivatepeering --path primary') self.cmd('network express-route list-route-tables --resource-group {rg} --name {er} --peering-name azureprivatepeering --path primary') - self.cmd('network express-route list-route-tables-summery --resource-group {rg} --name {er} --peering-name azureprivatepeering --path primary') self.cmd('network express-route delete --resource-group {rg} --name {er}') # Expecting no results as we just deleted the only express route in the resource group From e3f1a1312a9842f3bc9618c3313d26a20b6a5798 Mon Sep 17 00:00:00 2001 From: kai ru <69238381+kairu-ms@users.noreply.github.com> Date: Thu, 25 Mar 2021 16:27:14 +0800 Subject: [PATCH 4/6] add recording only for hybrid_2018_03_01/test_network_commands.py --- .../network/tests/hybrid_2018_03_01/test_network_commands.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py b/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py index 35fc38f19a5..1acad1df710 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/tests/hybrid_2018_03_01/test_network_commands.py @@ -13,7 +13,7 @@ from azure.cli.core.profiles import supported_api_version, ResourceType from azure.cli.testsdk import ( - ScenarioTest, LiveScenarioTest, ResourceGroupPreparer, StorageAccountPreparer, live_only) + ScenarioTest, LiveScenarioTest, ResourceGroupPreparer, StorageAccountPreparer, live_only, record_only) from knack.util import CLIError @@ -746,6 +746,7 @@ def _test_express_route_auth(self): self.cmd('network express-route auth list --resource-group {rg} --circuit-name {er}', checks=self.is_empty()) + @record_only() # record_only as the express route is extremely expensive, contact service team for an available ER @ResourceGroupPreparer(name_prefix='cli_test_express_route') def test_network_express_route(self, resource_group): @@ -803,6 +804,7 @@ def test_network_express_route(self, resource_group): class NetworkExpressRouteIPv6PeeringScenarioTest(ScenarioTest): + @record_only() # record_only as the express route is extremely expensive, contact service team for an available ER @ResourceGroupPreparer(name_prefix='cli_test_express_route_ipv6_peering') def test_network_express_route_ipv6_peering(self, resource_group): From 1684e2c33ca722f058b65df2476da86dda7769f1 Mon Sep 17 00:00:00 2001 From: kai ru <69238381+kairu-ms@users.noreply.github.com> Date: Thu, 1 Apr 2021 16:35:21 +0800 Subject: [PATCH 5/6] Update src/azure-cli/azure/cli/command_modules/network/commands.py --- src/azure-cli/azure/cli/command_modules/network/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/network/commands.py b/src/azure-cli/azure/cli/command_modules/network/commands.py index f3d2e78f1e9..a131e6b88f0 100644 --- a/src/azure-cli/azure/cli/command_modules/network/commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/commands.py @@ -783,7 +783,7 @@ def _make_singular(value): g.command('delete', 'begin_delete') g.show_command('show', 'get') g.command('list', 'list') - g.command('get-stats', 'get_peering_stats', command_type=network_er_sdk) + g.command('get-stats', 'get_peering_stats', command_type=network_er_sdk, is_preview=True) g.generic_update_command('update', setter_name='begin_create_or_update', setter_arg_name='peering_parameters', custom_func_name='update_express_route_peering') with self.command_group('network express-route peering connection', network_erconn_sdk) as g: From 71885b684604a403abe5a431f06adab887f41966 Mon Sep 17 00:00:00 2001 From: kai ru <69238381+kairu-ms@users.noreply.github.com> Date: Thu, 1 Apr 2021 16:35:27 +0800 Subject: [PATCH 6/6] Update src/azure-cli/azure/cli/command_modules/network/commands.py --- src/azure-cli/azure/cli/command_modules/network/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/network/commands.py b/src/azure-cli/azure/cli/command_modules/network/commands.py index a131e6b88f0..fc07b67cf95 100644 --- a/src/azure-cli/azure/cli/command_modules/network/commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/commands.py @@ -749,8 +749,8 @@ def _make_singular(value): g.show_command('show', 'get') g.command('get-stats', 'get_stats') g.command('list-arp-tables', 'begin_list_arp_table') - g.command('list-route-tables', 'begin_list_routes_table') - g.command('list-route-tables-summary', 'begin_list_routes_table_summary') + g.command('list-route-tables', 'begin_list_routes_table', is_preview=True) + g.command('list-route-tables-summary', 'begin_list_routes_table_summary', is_preview=True) g.custom_command('create', 'create_express_route', supports_no_wait=True) g.custom_command('list', 'list_express_route_circuits') g.command('list-service-providers', 'list', command_type=network_ersp_sdk)