From 461a7d40eb0482c67906965ce284d18c460d591d Mon Sep 17 00:00:00 2001 From: kai ru <69238381+kairu-ms@users.noreply.github.com> Date: Tue, 25 May 2021 17:32:31 +0800 Subject: [PATCH 1/5] add table transformer for az network vhub get-effective-routes --- src/virtual-wan/azext_vwan/_format.py | 18 ++++++++++++++++++ src/virtual-wan/azext_vwan/commands.py | 3 ++- .../latest/test_azure_vwan_vhub_commands.py | 14 +++++++------- 3 files changed, 27 insertions(+), 8 deletions(-) create mode 100644 src/virtual-wan/azext_vwan/_format.py diff --git a/src/virtual-wan/azext_vwan/_format.py b/src/virtual-wan/azext_vwan/_format.py new file mode 100644 index 00000000000..db263f89cec --- /dev/null +++ b/src/virtual-wan/azext_vwan/_format.py @@ -0,0 +1,18 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from collections import OrderedDict + + +def transform_effective_route_table(result): + transformed = [] + for item in result['value']: + transformed.append(OrderedDict([ + ('Address Prefix', ' '.join(item['addressPrefixes'] or [])), + ('Next Hop Type', item['nextHopType']), + ('Next Hop', ' '.join(item['nextHops'] or [])), + ('Route Origin', item['routeOrigin']) + ])) + return transformed \ No newline at end of file diff --git a/src/virtual-wan/azext_vwan/commands.py b/src/virtual-wan/azext_vwan/commands.py index 5c01959037f..573f7e14d14 100644 --- a/src/virtual-wan/azext_vwan/commands.py +++ b/src/virtual-wan/azext_vwan/commands.py @@ -15,6 +15,7 @@ list_network_resource_property, get_network_resource_property_entry ) +from ._format import transform_effective_route_table ROUTE_TABLE_DEPRECATION_INFO = 'network vhub route-table' @@ -109,7 +110,7 @@ def load_command_table(self, _): g.show_command('show') g.custom_command('list', 'list_virtual_hubs') g.generic_update_command('update', custom_func_name='update_virtual_hub', setter_name="begin_create_or_update", setter_arg_name='virtual_hub_parameters', supports_no_wait=True) - g.custom_command('get-effective-routes', 'get_effective_virtual_hub_routes', supports_no_wait=True) + g.custom_command('get-effective-routes', 'get_effective_virtual_hub_routes', supports_no_wait=True, table_transformer=transform_effective_route_table) with self.command_group('network vhub connection', network_vhub_connection_sdk) as g: g.custom_command('create', 'create_hub_vnet_connection', supports_no_wait=True) diff --git a/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py b/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py index 4d896d75f3e..aeac8a11587 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py +++ b/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py @@ -6,7 +6,7 @@ import os from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, record_only) - +from azure.cli.testsdk.checkers import StringContainCheck from .credential_replacer import VpnClientGeneratedURLReplacer TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) @@ -505,7 +505,7 @@ def test_azure_vwan_vhub_connection_routing_configuration(self): '-n {connection} ' '--vhub-name {vhub}') - @record_only() + # @record_only() @ResourceGroupPreparer(name_prefix='cli_test_azure_vwan_vhub_get_effective_routes') def test_azure_vwan_vhub_get_effective_routes(self): self.kwargs.update({ @@ -516,14 +516,14 @@ def test_azure_vwan_vhub_get_effective_routes(self): }) # You need to create a virtual hub and a P2S VPN gateway with connection, then connect them together before running the following command. - self.cmd('network vhub get-effective-routes ' + result = self.cmd('network vhub get-effective-routes ' '-g {rg} ' '-n {vhub} ' '--resource-type {resource_type} ' - '--resource-id {resource_id}', - checks=[ - self.check('length(value)', 5) - ]) + '--resource-id {resource_id} ' + '-o table') + lines = result.output.strip().split('\n') + self.assertTrue(len(lines) == 7) class P2SVpnGatewayVpnClientTestScenario(ScenarioTest): From 40957720e034f6e3b364350ecabc09c950c950a4 Mon Sep 17 00:00:00 2001 From: kai ru <69238381+kairu-ms@users.noreply.github.com> Date: Tue, 25 May 2021 17:33:35 +0800 Subject: [PATCH 2/5] add table transformer for az network vhub get-effective-routes --- .../azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py b/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py index aeac8a11587..ea435f1b343 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py +++ b/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py @@ -505,7 +505,7 @@ def test_azure_vwan_vhub_connection_routing_configuration(self): '-n {connection} ' '--vhub-name {vhub}') - # @record_only() + @record_only() @ResourceGroupPreparer(name_prefix='cli_test_azure_vwan_vhub_get_effective_routes') def test_azure_vwan_vhub_get_effective_routes(self): self.kwargs.update({ From b76d7bf728271d9b46cafea97676482d13e11df9 Mon Sep 17 00:00:00 2001 From: kai ru <69238381+kairu-ms@users.noreply.github.com> Date: Tue, 25 May 2021 17:37:20 +0800 Subject: [PATCH 3/5] bump up version --- src/virtual-wan/HISTORY.rst | 4 ++++ src/virtual-wan/setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/virtual-wan/HISTORY.rst b/src/virtual-wan/HISTORY.rst index 8ae93df9fe8..e416fb84583 100644 --- a/src/virtual-wan/HISTORY.rst +++ b/src/virtual-wan/HISTORY.rst @@ -2,6 +2,10 @@ Release History =============== +0.2.6 +++++++ +* `az network vhub get-effective-routes` support `-o table` outputs. + 0.2.5 ++++++ * Migrate to Track2 SDK. diff --git a/src/virtual-wan/setup.py b/src/virtual-wan/setup.py index c8eb694e17c..31442f4702c 100644 --- a/src/virtual-wan/setup.py +++ b/src/virtual-wan/setup.py @@ -8,7 +8,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = "0.2.5" +VERSION = "0.2.6" CLASSIFIERS = [ 'Development Status :: 4 - Beta', From 20c7a82e239cf436494aac0e4d0337e8562e18b9 Mon Sep 17 00:00:00 2001 From: kai ru <69238381+kairu-ms@users.noreply.github.com> Date: Tue, 25 May 2021 17:53:08 +0800 Subject: [PATCH 4/5] fix ci issues --- src/virtual-wan/azext_vwan/_format.py | 4 ++-- .../test_azure_vwan_vhub_get_effective_routes.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/virtual-wan/azext_vwan/_format.py b/src/virtual-wan/azext_vwan/_format.py index db263f89cec..ab5e0b3ff7c 100644 --- a/src/virtual-wan/azext_vwan/_format.py +++ b/src/virtual-wan/azext_vwan/_format.py @@ -8,11 +8,11 @@ def transform_effective_route_table(result): transformed = [] - for item in result['value']: + for item in result.get('value', []): transformed.append(OrderedDict([ ('Address Prefix', ' '.join(item['addressPrefixes'] or [])), ('Next Hop Type', item['nextHopType']), ('Next Hop', ' '.join(item['nextHops'] or [])), ('Route Origin', item['routeOrigin']) ])) - return transformed \ No newline at end of file + return transformed diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_get_effective_routes.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_get_effective_routes.yaml index d7415796d27..7559c1db1ee 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_get_effective_routes.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vhub_get_effective_routes.yaml @@ -16,7 +16,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -n --resource-type --resource-id + - -g -n --resource-type --resource-id -o User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.7.0 @@ -70,7 +70,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --resource-type --resource-id + - -g -n --resource-type --resource-id -o User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.7.0 @@ -139,7 +139,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --resource-type --resource-id + - -g -n --resource-type --resource-id -o User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.7.0 From 3a6bb8a923646131b7fc4870391702b0c7e3568d Mon Sep 17 00:00:00 2001 From: kai ru <69238381+kairu-ms@users.noreply.github.com> Date: Fri, 28 May 2021 10:43:55 +0800 Subject: [PATCH 5/5] update recordings --- ..._azure_vhub_connection_basic_scenario.yaml | 371 ++++++++---------- 1 file changed, 158 insertions(+), 213 deletions(-) diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vhub_connection_basic_scenario.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vhub_connection_basic_scenario.yaml index ba412cce93d..773e15cf861 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vhub_connection_basic_scenario.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vhub_connection_basic_scenario.yaml @@ -13,15 +13,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-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 + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vhub_connection000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001","name":"cli_test_azure_vhub_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T09:49:25Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001","name":"cli_test_azure_vhub_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-05-27T09:12:59Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:49:31 GMT + - Thu, 27 May 2021 09:13:12 GMT expires: - '-1' pragma: @@ -63,16 +60,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualNetworks/clitestvnet2?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualNetworks/clitestvnet2?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"clitestvnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualNetworks/clitestvnet2\",\r\n - \ \"etag\": \"W/\\\"32b5633a-f3a0-4054-809b-1388cb8eb848\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c4212fa6-ba03-44cb-8078-6d7131775192\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"306b3070-3b40-4988-8d9c-696ee8fdd55c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"c767c842-5274-4e5c-94f1-7096f2b15f1f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -81,7 +78,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/33b480f0-dd5a-44fb-84a3-1544ac3364fd?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e2b50e58-2639-49e4-bfdb-087c6e40a59e?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -89,7 +86,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:49:39 GMT + - Thu, 27 May 2021 09:13:18 GMT expires: - '-1' pragma: @@ -102,9 +99,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e2b8659a-c173-4491-88c1-1cccee4222ac + - d9f48e40-16c8-4280-8b41-2c484305492c x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -122,9 +119,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/33b480f0-dd5a-44fb-84a3-1544ac3364fd?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e2b50e58-2639-49e4-bfdb-087c6e40a59e?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -136,7 +133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:49:42 GMT + - Thu, 27 May 2021 09:13:21 GMT expires: - '-1' pragma: @@ -153,7 +150,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 436614f9-bc59-42ca-9fdb-0f066dbdd8dd + - 4fa5c078-fa9c-4eee-b7ab-3cdf9cfbad46 status: code: 200 message: OK @@ -171,16 +168,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualNetworks/clitestvnet2?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualNetworks/clitestvnet2?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"clitestvnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualNetworks/clitestvnet2\",\r\n - \ \"etag\": \"W/\\\"c12a5304-4cc9-4169-ab12-3e9527563f35\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f5f16849-e210-4d36-b650-c7c277f9ce4d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"306b3070-3b40-4988-8d9c-696ee8fdd55c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"c767c842-5274-4e5c-94f1-7096f2b15f1f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -193,9 +190,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:49:42 GMT + - Thu, 27 May 2021 09:13:21 GMT etag: - - W/"c12a5304-4cc9-4169-ab12-3e9527563f35" + - W/"f5f16849-e210-4d36-b650-c7c277f9ce4d" expires: - '-1' pragma: @@ -212,7 +209,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6af8df42-b336-474a-a309-9a85b5c267a5 + - f82e8db6-5439-4454-a6ba-d8b7ba87ec25 status: code: 200 message: OK @@ -230,15 +227,12 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-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 + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vhub_connection000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001","name":"cli_test_azure_vhub_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T09:49:25Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001","name":"cli_test_azure_vhub_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-05-27T09:12:59Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -247,7 +241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:49:44 GMT + - Thu, 27 May 2021 09:13:24 GMT expires: - '-1' pragma: @@ -279,13 +273,13 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan2?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvwan2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan2\",\r\n - \ \"etag\": \"W/\\\"ea61f4df-2695-42d4-ad2a-8d32836e75b5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d0623350-2071-41ac-b376-9e8d12b24276\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -294,7 +288,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f9d65fe4-28ef-4e22-b92f-fbf55be1660c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8385bdcf-c07f-49aa-8083-5bc118db0048?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -302,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:49:52 GMT + - Thu, 27 May 2021 09:13:29 GMT expires: - '-1' pragma: @@ -315,9 +309,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c7414f32-6bc2-4cfa-9969-63e663b6dcbc + - 663392ab-ed31-47c2-b6f5-03ddcc471373 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -335,9 +329,9 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f9d65fe4-28ef-4e22-b92f-fbf55be1660c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8385bdcf-c07f-49aa-8083-5bc118db0048?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -349,7 +343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:50:02 GMT + - Thu, 27 May 2021 09:13:39 GMT expires: - '-1' pragma: @@ -366,7 +360,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2f87f56-e193-457e-b6f4-6065bc420e7d + - 769d942c-7b72-4cd9-892d-f2bb86c7b986 status: code: 200 message: OK @@ -384,13 +378,13 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan2?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvwan2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan2\",\r\n - \ \"etag\": \"W/\\\"448550b2-b238-4a55-82a9-584c3d78f9e6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"272fe14b-ad31-4c11-a572-686daa6f1b6e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -403,9 +397,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:50:02 GMT + - Thu, 27 May 2021 09:13:39 GMT etag: - - W/"448550b2-b238-4a55-82a9-584c3d78f9e6" + - W/"272fe14b-ad31-4c11-a572-686daa6f1b6e" expires: - '-1' pragma: @@ -422,7 +416,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e7279c94-3275-4b78-a959-6a51f01ce99f + - 20ea4a69-60af-414b-9bf2-fe0160165bf8 status: code: 200 message: OK @@ -445,13 +439,13 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvhub2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2\",\r\n - \ \"etag\": \"W/\\\"8c9f5fee-4f71-403e-ae08-23e5a5ffcce3\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"0e8da33c-0d33-497e-8af6-bf0edce47737\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.5.0.0/16\",\r\n \"virtualRouterAsn\": @@ -463,7 +457,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2ec472ab-0a4f-4bf6-9b43-af6c103e62b0?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/142d68c6-8929-4213-bdff-bed8398fc345?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -471,7 +465,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:50:10 GMT + - Thu, 27 May 2021 09:13:47 GMT expires: - '-1' pragma: @@ -484,9 +478,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b846c222-027d-4609-9df4-cb680336aa72 + - 88ad1b1b-8508-4b99-b5bd-fbfb61098135 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -504,58 +498,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2ec472ab-0a4f-4bf6-9b43-af6c103e62b0?api-version=2020-05-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: - - Thu, 15 Apr 2021 09:50:20 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: - - 64621dfa-04d6-455c-9981-833fa5d62c42 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vhub create - Connection: - - keep-alive - ParameterSetName: - - -g -n --vwan --address-prefix -l --sku - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2ec472ab-0a4f-4bf6-9b43-af6c103e62b0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/142d68c6-8929-4213-bdff-bed8398fc345?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -567,7 +512,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:50:30 GMT + - Thu, 27 May 2021 09:13:57 GMT expires: - '-1' pragma: @@ -584,7 +529,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ca1425ec-c1a1-49fc-aa77-77072299e65c + - 7d92c4ae-ca5c-48fc-b12f-bb86cd678cfb status: code: 200 message: OK @@ -602,9 +547,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2ec472ab-0a4f-4bf6-9b43-af6c103e62b0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/142d68c6-8929-4213-bdff-bed8398fc345?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -616,7 +561,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:50:51 GMT + - Thu, 27 May 2021 09:14:07 GMT expires: - '-1' pragma: @@ -633,7 +578,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 161b65ae-3c0b-4986-b2c5-a17382332b99 + - 84161d94-c286-4e33-827e-feb0cee59ede status: code: 200 message: OK @@ -651,9 +596,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2ec472ab-0a4f-4bf6-9b43-af6c103e62b0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/142d68c6-8929-4213-bdff-bed8398fc345?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -665,7 +610,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:51:11 GMT + - Thu, 27 May 2021 09:14:28 GMT expires: - '-1' pragma: @@ -682,7 +627,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7293ab2a-4b15-452e-a40f-ca1b1d3a49e8 + - d28e50ec-efd6-40d8-8a91-78f369953d1a status: code: 200 message: OK @@ -700,9 +645,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2ec472ab-0a4f-4bf6-9b43-af6c103e62b0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/142d68c6-8929-4213-bdff-bed8398fc345?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -714,7 +659,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:51:52 GMT + - Thu, 27 May 2021 09:14:50 GMT expires: - '-1' pragma: @@ -731,7 +676,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 65dc7e3f-1957-4353-a500-8d82a9120570 + - f518ba9d-c677-4fa0-9606-14f4b77cac15 status: code: 200 message: OK @@ -749,9 +694,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2ec472ab-0a4f-4bf6-9b43-af6c103e62b0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/142d68c6-8929-4213-bdff-bed8398fc345?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -763,7 +708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:52:32 GMT + - Thu, 27 May 2021 09:15:30 GMT expires: - '-1' pragma: @@ -780,7 +725,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e7e6a312-01ea-4f07-8905-99f370c4082c + - 347ffdf7-d770-48c5-a802-b4d23e12ee24 status: code: 200 message: OK @@ -798,9 +743,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2ec472ab-0a4f-4bf6-9b43-af6c103e62b0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/142d68c6-8929-4213-bdff-bed8398fc345?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -812,7 +757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:53:52 GMT + - Thu, 27 May 2021 09:16:10 GMT expires: - '-1' pragma: @@ -829,7 +774,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 86c879dc-bd28-4180-89a0-69961b00599e + - 5e7137ee-8d6a-4acc-8505-c7951cf48688 status: code: 200 message: OK @@ -847,9 +792,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2ec472ab-0a4f-4bf6-9b43-af6c103e62b0?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/142d68c6-8929-4213-bdff-bed8398fc345?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -861,7 +806,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:55:33 GMT + - Thu, 27 May 2021 09:17:30 GMT expires: - '-1' pragma: @@ -878,7 +823,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 05461fcd-396e-4d69-91fb-fc2de9e63e9e + - d4060c24-0e84-4ce1-b604-29dd40faf585 status: code: 200 message: OK @@ -896,13 +841,13 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvhub2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2\",\r\n - \ \"etag\": \"W/\\\"3ace4739-7aa8-4a3b-8ef6-dfe3b29180ed\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d85dce34-3e7b-4a7d-bfbf-381a52c51d7a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.5.0.0/16\",\r\n \"virtualRouterAsn\": @@ -918,7 +863,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:55:34 GMT + - Thu, 27 May 2021 09:17:31 GMT expires: - '-1' pragma: @@ -935,7 +880,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 69d6015a-7913-4515-ab91-64c63dca5bc6 + - 1b91e9cf-f638-4e38-a0de-07df91554663 status: code: 200 message: OK @@ -960,15 +905,15 @@ interactions: ParameterSetName: - -g --vhub-name --name --remote-vnet User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvhubconnection2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2\",\r\n - \ \"etag\": \"W/\\\"d91d5a51-42f9-4e27-a8df-4f7ab16f511d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"378d18c5-c87d-4aef-a3b4-81d61fb965bd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1517fcf8-c7b6-4c70-823f-28917bbe8cbe\",\r\n + {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6f5e023a-e39c-4240-a414-4bdaa32df05d\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubRouteTables/defaultRouteTable\"\r\n \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n @@ -981,7 +926,7 @@ interactions: false,\r\n \"enableInternetSecurity\": true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6ea00c25-dff3-44b4-a9b2-0fe0b05fa151?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f729f2c-d4a0-4b3e-b728-630c274a27c9?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -989,7 +934,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:55:36 GMT + - Thu, 27 May 2021 09:17:33 GMT expires: - '-1' pragma: @@ -1002,9 +947,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 815bf240-3b72-44f7-bcd7-90b7ee5ad7c7 + - 55fbc3d7-f53b-4710-994e-1963c4e35804 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -1022,9 +967,9 @@ interactions: ParameterSetName: - -g --vhub-name --name --remote-vnet User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6ea00c25-dff3-44b4-a9b2-0fe0b05fa151?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f729f2c-d4a0-4b3e-b728-630c274a27c9?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1036,7 +981,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:55:46 GMT + - Thu, 27 May 2021 09:17:43 GMT expires: - '-1' pragma: @@ -1053,7 +998,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c91f1d2d-8121-41d4-b6b5-c86d954e4db2 + - 2aca8888-6b7b-42e9-a102-8d542996457f status: code: 200 message: OK @@ -1071,9 +1016,9 @@ interactions: ParameterSetName: - -g --vhub-name --name --remote-vnet User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6ea00c25-dff3-44b4-a9b2-0fe0b05fa151?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f729f2c-d4a0-4b3e-b728-630c274a27c9?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1085,7 +1030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:55:57 GMT + - Thu, 27 May 2021 09:17:53 GMT expires: - '-1' pragma: @@ -1102,7 +1047,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3c57f3e8-ad04-4adb-9e35-93abbd6928a2 + - 4e6c0ae0-9100-426d-a8c0-ab0bcfcd438d status: code: 200 message: OK @@ -1120,15 +1065,15 @@ interactions: ParameterSetName: - -g --vhub-name --name --remote-vnet User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvhubconnection2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2\",\r\n - \ \"etag\": \"W/\\\"d853ace8-3574-4add-8d84-5e9b5f709ee1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"dbd92364-3f9e-46d1-ae65-a4f0363f9e8d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1517fcf8-c7b6-4c70-823f-28917bbe8cbe\",\r\n + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6f5e023a-e39c-4240-a414-4bdaa32df05d\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubRouteTables/defaultRouteTable\"\r\n \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n @@ -1147,9 +1092,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:55:57 GMT + - Thu, 27 May 2021 09:17:53 GMT etag: - - W/"d853ace8-3574-4add-8d84-5e9b5f709ee1" + - W/"dbd92364-3f9e-46d1-ae65-a4f0363f9e8d" expires: - '-1' pragma: @@ -1166,7 +1111,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ab2f00d0-54f1-4699-aca7-3449d64fa884 + - 99859914-ec30-4c9d-8e64-b314e6f53cd1 status: code: 200 message: OK @@ -1184,17 +1129,17 @@ interactions: ParameterSetName: - -g --vhub-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections?api-version=2020-05-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"clitestvhubconnection2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2\",\r\n - \ \"etag\": \"W/\\\"d853ace8-3574-4add-8d84-5e9b5f709ee1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"dbd92364-3f9e-46d1-ae65-a4f0363f9e8d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"1517fcf8-c7b6-4c70-823f-28917bbe8cbe\",\r\n \"routingConfiguration\": + \"6f5e023a-e39c-4240-a414-4bdaa32df05d\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubRouteTables/defaultRouteTable\"\r\n \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n @@ -1213,7 +1158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:55:59 GMT + - Thu, 27 May 2021 09:17:55 GMT expires: - '-1' pragma: @@ -1230,7 +1175,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f7cf5f36-45c4-4025-9f31-695554d31f43 + - 9feb4634-5932-40c0-9262-78f24ac28f07 status: code: 200 message: OK @@ -1248,15 +1193,15 @@ interactions: ParameterSetName: - -g --vhub-name --name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvhubconnection2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2\",\r\n - \ \"etag\": \"W/\\\"d853ace8-3574-4add-8d84-5e9b5f709ee1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"dbd92364-3f9e-46d1-ae65-a4f0363f9e8d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1517fcf8-c7b6-4c70-823f-28917bbe8cbe\",\r\n + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6f5e023a-e39c-4240-a414-4bdaa32df05d\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubRouteTables/defaultRouteTable\"\r\n \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n @@ -1275,9 +1220,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:56:00 GMT + - Thu, 27 May 2021 09:17:56 GMT etag: - - W/"d853ace8-3574-4add-8d84-5e9b5f709ee1" + - W/"dbd92364-3f9e-46d1-ae65-a4f0363f9e8d" expires: - '-1' pragma: @@ -1294,7 +1239,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 76eadcd1-b7bf-4c5e-b97a-f85b0cee6de0 + - 3808d98f-663c-4eb0-9bc3-dce83a7572e5 status: code: 200 message: OK @@ -1312,15 +1257,15 @@ interactions: ParameterSetName: - -g --vhub-name --name --labels User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvhubconnection2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2\",\r\n - \ \"etag\": \"W/\\\"d853ace8-3574-4add-8d84-5e9b5f709ee1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"dbd92364-3f9e-46d1-ae65-a4f0363f9e8d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1517fcf8-c7b6-4c70-823f-28917bbe8cbe\",\r\n + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6f5e023a-e39c-4240-a414-4bdaa32df05d\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubRouteTables/defaultRouteTable\"\r\n \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n @@ -1339,9 +1284,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:56:01 GMT + - Thu, 27 May 2021 09:17:58 GMT etag: - - W/"d853ace8-3574-4add-8d84-5e9b5f709ee1" + - W/"dbd92364-3f9e-46d1-ae65-a4f0363f9e8d" expires: - '-1' pragma: @@ -1358,7 +1303,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 75b1e329-3a7c-41fc-a9ed-0807a9715a2c + - e658f432-474a-4af6-9e6b-85580e8bc3db status: code: 200 message: OK @@ -1387,15 +1332,15 @@ interactions: ParameterSetName: - -g --vhub-name --name --labels User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvhubconnection2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2\",\r\n - \ \"etag\": \"W/\\\"c19476a6-dc50-4249-994b-aa23e585c6a0\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"aecd5509-f616-4985-9ac3-0789c2c870d0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1517fcf8-c7b6-4c70-823f-28917bbe8cbe\",\r\n + {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6f5e023a-e39c-4240-a414-4bdaa32df05d\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubRouteTables/defaultRouteTable\"\r\n \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n @@ -1408,7 +1353,7 @@ interactions: false,\r\n \"enableInternetSecurity\": true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2be83f6b-dda1-4237-88da-7d9b245da3e2?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/758ca9d5-33e4-419e-a01f-f0938998bc74?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1416,7 +1361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:56:04 GMT + - Thu, 27 May 2021 09:17:58 GMT expires: - '-1' pragma: @@ -1433,9 +1378,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fd06864e-6524-4791-a145-d9e24add7744 + - 8bf2c229-795c-4b7c-9f83-cf80a80a0849 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1453,9 +1398,9 @@ interactions: ParameterSetName: - -g --vhub-name --name --labels User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2be83f6b-dda1-4237-88da-7d9b245da3e2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/758ca9d5-33e4-419e-a01f-f0938998bc74?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1467,7 +1412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:56:14 GMT + - Thu, 27 May 2021 09:18:09 GMT expires: - '-1' pragma: @@ -1484,7 +1429,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ea6b7725-1bb5-42fa-86ab-84b6437d67e4 + - c76296f9-01ee-4d45-9485-97e813578189 status: code: 200 message: OK @@ -1502,15 +1447,15 @@ interactions: ParameterSetName: - -g --vhub-name --name --labels User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvhubconnection2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2\",\r\n - \ \"etag\": \"W/\\\"8d11c411-d6f7-4fb3-8d90-d69e2cd6f717\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"63398077-74ea-4b86-b3f6-5dee3ab74502\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1517fcf8-c7b6-4c70-823f-28917bbe8cbe\",\r\n + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6f5e023a-e39c-4240-a414-4bdaa32df05d\",\r\n \ \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubRouteTables/defaultRouteTable\"\r\n \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n @@ -1529,9 +1474,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:56:14 GMT + - Thu, 27 May 2021 09:18:09 GMT etag: - - W/"8d11c411-d6f7-4fb3-8d90-d69e2cd6f717" + - W/"63398077-74ea-4b86-b3f6-5dee3ab74502" expires: - '-1' pragma: @@ -1548,7 +1493,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5e5657f8-4a62-427b-a4be-a1a4652e8f5b + - 8fe6588f-6f05-4332-b0a5-7ec719de0a26 status: code: 200 message: OK @@ -1568,7 +1513,7 @@ interactions: ParameterSetName: - -g --vhub-name --name -y User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections/clitestvhubconnection2?api-version=2020-05-01 response: @@ -1576,17 +1521,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f828b6a-46d9-4353-a5d8-e2d52ed43620?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3daa9be7-342a-404b-94da-32e83f1baad6?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Apr 2021 09:56:16 GMT + - Thu, 27 May 2021 09:18:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/4f828b6a-46d9-4353-a5d8-e2d52ed43620?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/3daa9be7-342a-404b-94da-32e83f1baad6?api-version=2020-05-01 pragma: - no-cache server: @@ -1597,9 +1542,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 022b024e-ba48-4020-a7c0-c80a691fa54e + - 5f24462e-4567-492c-a74d-d595644d6cc3 x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -1617,9 +1562,9 @@ interactions: ParameterSetName: - -g --vhub-name --name -y User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f828b6a-46d9-4353-a5d8-e2d52ed43620?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3daa9be7-342a-404b-94da-32e83f1baad6?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1631,7 +1576,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:56:27 GMT + - Thu, 27 May 2021 09:18:21 GMT expires: - '-1' pragma: @@ -1648,7 +1593,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8bb835d5-a49b-4622-838e-90a7f3f99567 + - b62d85aa-c5f4-4737-ae8e-b98c2fcd2fd2 status: code: 200 message: OK @@ -1666,9 +1611,9 @@ interactions: ParameterSetName: - -g --vhub-name --name -y User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f828b6a-46d9-4353-a5d8-e2d52ed43620?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3daa9be7-342a-404b-94da-32e83f1baad6?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1680,7 +1625,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:56:38 GMT + - Thu, 27 May 2021 09:18:31 GMT expires: - '-1' pragma: @@ -1697,7 +1642,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 69b74f4d-dd93-47e3-ab68-8f9dbdb3c5a9 + - 2169f53a-b0c5-4c02-92c9-481d6e236fdf status: code: 200 message: OK @@ -1715,9 +1660,9 @@ interactions: ParameterSetName: - -g --vhub-name --name -y User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f828b6a-46d9-4353-a5d8-e2d52ed43620?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3daa9be7-342a-404b-94da-32e83f1baad6?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1729,7 +1674,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:56:58 GMT + - Thu, 27 May 2021 09:18:51 GMT expires: - '-1' pragma: @@ -1746,7 +1691,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d89c0926-b9bb-4b48-a30d-6086dab1adfc + - 2692d331-0cce-4d5f-9613-bb6eb3fb425c status: code: 200 message: OK @@ -1764,9 +1709,9 @@ interactions: ParameterSetName: - -g --vhub-name --name -y User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4f828b6a-46d9-4353-a5d8-e2d52ed43620?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3daa9be7-342a-404b-94da-32e83f1baad6?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1778,7 +1723,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:57:38 GMT + - Thu, 27 May 2021 09:19:31 GMT expires: - '-1' pragma: @@ -1795,7 +1740,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 211ae98c-7608-4d06-bfe7-423b3c4f9b24 + - 145be535-d417-4133-a135-69972396b963 status: code: 200 message: OK @@ -1813,7 +1758,7 @@ interactions: ParameterSetName: - -g --vhub-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub2/hubVirtualNetworkConnections?api-version=2020-05-01 response: @@ -1827,7 +1772,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Apr 2021 09:57:40 GMT + - Thu, 27 May 2021 09:19:33 GMT expires: - '-1' pragma: @@ -1844,7 +1789,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 089e9843-2cdc-4289-a06b-15bc14242d05 + - 81695514-7993-4510-b964-1ab88a26dba5 status: code: 200 message: OK