From 45c6983da2c3caa06ab18da1664ed2f6a8ffddc6 Mon Sep 17 00:00:00 2001 From: kai ru <69238381+kairu-ms@users.noreply.github.com> Date: Mon, 28 Jun 2021 16:20:29 +0800 Subject: [PATCH 1/3] add public_ip_address parameter for 'az network routeserver create' --- .../cli/command_modules/network/_help.py | 2 +- .../cli/command_modules/network/_params.py | 4 + .../cli/command_modules/network/custom.py | 6 +- ...t_network_virtual_hub_router_scenario.yaml | 966 ++++++++++++------ .../tests/latest/test_network_commands.py | 4 +- 5 files changed, 677 insertions(+), 305 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 d600f518fd2..55f82e9b7e1 100644 --- a/src/azure-cli/azure/cli/command_modules/network/_help.py +++ b/src/azure-cli/azure/cli/command_modules/network/_help.py @@ -6163,7 +6163,7 @@ examples: - name: Create a route server. text: | - az network routeserver create --resource-group myresourcegroup --name myrouteserver --hosted-subnet my_subnet_id + az network routeserver create --resource-group myresourcegroup --name myrouteserver --hosted-subnet my_subnet_id --public-ip-address my_public_ip """ helps['network routeserver update'] = """ 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 12331de3e90..193e3fc84be 100644 --- a/src/azure-cli/azure/cli/command_modules/network/_params.py +++ b/src/azure-cli/azure/cli/command_modules/network/_params.py @@ -2083,6 +2083,10 @@ def load_arguments(self, _): c.argument('hosted_subnet', help='The ID of a subnet where Route Server would be deployed') c.argument('allow_branch_to_branch_traffic', options_list=['--allow-b2b-traffic'], arg_type=get_three_state_flag(), help='Allow branch to branch traffic.') + c.argument('public_ip_address', validator=get_public_ip_validator(), + help='The name or ID of the public IP address.', + completer=get_resource_name_completion_list('Microsoft.Network/publicIPAddresses'), + min_api='2021-02-01') with self.argument_context('network routeserver create') as c: c.argument('virtual_hub_name', id_part=None) 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 b0f3a222bc0..65dc292cd90 100644 --- a/src/azure-cli/azure/cli/command_modules/network/custom.py +++ b/src/azure-cli/azure/cli/command_modules/network/custom.py @@ -6989,6 +6989,7 @@ def remove_vnet_gateway_nat_rule(cmd, resource_group_name, gateway_name, name, n def create_virtual_hub(cmd, client, resource_group_name, virtual_hub_name, + public_ip_address=None, hosted_subnet=None, location=None, tags=None): @@ -7012,7 +7013,10 @@ def create_virtual_hub(cmd, client, vhub_poller = client.begin_create_or_update(resource_group_name, virtual_hub_name, hub) LongRunningOperation(cmd.cli_ctx)(vhub_poller) - ip_config = HubIpConfiguration(subnet=SubResource(id=hosted_subnet)) + ip_config = HubIpConfiguration( + subnet=SubResource(id=hosted_subnet), + public_ip_address=SubResource(id=public_ip_address) if public_ip_address else None, + ) vhub_ip_config_client = network_client_factory(cmd.cli_ctx).virtual_hub_ip_configuration try: vhub_ip_poller = vhub_ip_config_client.begin_create_or_update( diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_virtual_hub_router_scenario.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_virtual_hub_router_scenario.yaml index 5283bf1e79e..941b1ba973f 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_virtual_hub_router_scenario.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_virtual_hub_router_scenario.yaml @@ -20,21 +20,21 @@ interactions: ParameterSetName: - -g -n --location --subnet-name --address-prefix User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2\",\r\n - \ \"etag\": \"W/\\\"d146afbf-3bf5-4ce1-8601-5530c0eb90d6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2befd64d-ee43-427f-abe9-bde04890ccb5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"5e6f27ac-ab67-4f76-91c2-8227408e7cd6\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d4cf0e4d-cf74-4498-bfd9-9946c9fd8fc7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"RouteServerSubnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"d146afbf-3bf5-4ce1-8601-5530c0eb90d6\\\"\",\r\n + \ \"etag\": \"W/\\\"2befd64d-ee43-427f-abe9-bde04890ccb5\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -45,7 +45,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b1f0514f-c1dd-4980-b5a4-d7a6b4a6689e?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/92895d4d-5e5f-4f5f-b6bc-b9f53acbee85?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -53,7 +53,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:01:08 GMT + - Mon, 28 Jun 2021 07:41:14 GMT expires: - '-1' pragma: @@ -66,9 +66,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 332c29fc-7850-4f6c-b837-8ce8ae3351c7 + - eb92a547-af2b-41e6-857d-a7a1e1ec4c36 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1197' status: code: 201 message: Created @@ -86,9 +86,9 @@ interactions: ParameterSetName: - -g -n --location --subnet-name --address-prefix User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/b1f0514f-c1dd-4980-b5a4-d7a6b4a6689e?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/92895d4d-5e5f-4f5f-b6bc-b9f53acbee85?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -100,7 +100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:01:11 GMT + - Mon, 28 Jun 2021 07:41:17 GMT expires: - '-1' pragma: @@ -117,7 +117,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4b5e2938-8d91-4361-aca4-4dc654a01ee1 + - c30956e7-6580-41df-b738-38278671eca7 status: code: 200 message: OK @@ -135,21 +135,21 @@ interactions: ParameterSetName: - -g -n --location --subnet-name --address-prefix User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2\",\r\n - \ \"etag\": \"W/\\\"4c786cf0-62eb-4a8f-b50b-5d1ff08e884c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b96aae94-f471-4dc4-a09b-070221dbf5c2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5e6f27ac-ab67-4f76-91c2-8227408e7cd6\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d4cf0e4d-cf74-4498-bfd9-9946c9fd8fc7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"RouteServerSubnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"4c786cf0-62eb-4a8f-b50b-5d1ff08e884c\\\"\",\r\n + \ \"etag\": \"W/\\\"b96aae94-f471-4dc4-a09b-070221dbf5c2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -164,9 +164,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:01:11 GMT + - Mon, 28 Jun 2021 07:41:18 GMT etag: - - W/"4c786cf0-62eb-4a8f-b50b-5d1ff08e884c" + - W/"b96aae94-f471-4dc4-a09b-070221dbf5c2" expires: - '-1' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4d63c979-f067-4260-94a6-0725b6d3b316 + - 74b82c1c-d5a7-440d-819f-12c42d0688f7 status: code: 200 message: OK @@ -201,13 +201,13 @@ interactions: ParameterSetName: - -g --vnet-name -n --remove User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"RouteServerSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"4c786cf0-62eb-4a8f-b50b-5d1ff08e884c\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"b96aae94-f471-4dc4-a09b-070221dbf5c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -220,9 +220,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:01:12 GMT + - Mon, 28 Jun 2021 07:41:20 GMT etag: - - W/"4c786cf0-62eb-4a8f-b50b-5d1ff08e884c" + - W/"b96aae94-f471-4dc4-a09b-070221dbf5c2" expires: - '-1' pragma: @@ -239,7 +239,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c2f209cf-a877-4610-98b4-b3dab044f9db + - 3285a01c-8417-4b07-ab8d-cecc42554282 status: code: 200 message: OK @@ -264,20 +264,20 @@ interactions: ParameterSetName: - -g --vnet-name -n --remove User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"RouteServerSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"ee194b20-bcfd-4568-9145-b6fae9605405\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"baa70996-bb4b-4cfd-94e7-0847f6f4d2b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/e2f34e5d-b895-4949-b1ea-2460fa986e57?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/a0332e18-dbd5-4927-8e3b-490ebaf95ad5?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -285,7 +285,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:01:13 GMT + - Mon, 28 Jun 2021 07:41:21 GMT expires: - '-1' pragma: @@ -302,9 +302,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7dc05e72-e41d-4399-a201-2cb09335088b + - a19f8e0d-e1c0-4288-9c0c-4eb58808e27c x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1196' status: code: 200 message: OK @@ -322,9 +322,9 @@ interactions: ParameterSetName: - -g --vnet-name -n --remove User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/e2f34e5d-b895-4949-b1ea-2460fa986e57?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/a0332e18-dbd5-4927-8e3b-490ebaf95ad5?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -336,7 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:01:44 GMT + - Mon, 28 Jun 2021 07:41:51 GMT expires: - '-1' pragma: @@ -353,7 +353,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d1fc63ad-bf75-42de-927c-04b52f27894e + - 1a97b22f-3fcf-457a-8f50-140c602815c6 status: code: 200 message: OK @@ -371,13 +371,13 @@ interactions: ParameterSetName: - -g --vnet-name -n --remove User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"RouteServerSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"ee194b20-bcfd-4568-9145-b6fae9605405\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"baa70996-bb4b-4cfd-94e7-0847f6f4d2b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -390,9 +390,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:01:44 GMT + - Mon, 28 Jun 2021 07:41:51 GMT etag: - - W/"ee194b20-bcfd-4568-9145-b6fae9605405" + - W/"baa70996-bb4b-4cfd-94e7-0847f6f4d2b7" expires: - '-1' pragma: @@ -409,7 +409,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2d5af06f-bfbe-49a1-b4b9-ceac5362454d + - a74ec872-9b0f-4ffa-87c7-774912773e44 status: code: 200 message: OK @@ -427,21 +427,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2\",\r\n - \ \"etag\": \"W/\\\"ee194b20-bcfd-4568-9145-b6fae9605405\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"baa70996-bb4b-4cfd-94e7-0847f6f4d2b7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5e6f27ac-ab67-4f76-91c2-8227408e7cd6\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d4cf0e4d-cf74-4498-bfd9-9946c9fd8fc7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"RouteServerSubnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"ee194b20-bcfd-4568-9145-b6fae9605405\\\"\",\r\n + \ \"etag\": \"W/\\\"baa70996-bb4b-4cfd-94e7-0847f6f4d2b7\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -456,9 +456,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:01:45 GMT + - Mon, 28 Jun 2021 07:41:53 GMT etag: - - W/"ee194b20-bcfd-4568-9145-b6fae9605405" + - W/"baa70996-bb4b-4cfd-94e7-0847f6f4d2b7" expires: - '-1' pragma: @@ -475,7 +475,219 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7a307e61-b075-4541-8663-641c86c51da2 + - f291e340-af42-4421-b62f-4ec99cbfc24a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.25.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_virtual_hub_router000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001","name":"cli_test_virtual_hub_router000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-06-28T07:40:58Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '435' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 28 Jun 2021 07:41:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "centraluseuap", "properties": {"publicIPAllocationMethod": + "Dynamic", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + Content-Length: + - '145' + Content-Type: + - application/json + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1?api-version=2021-02-01 + response: + body: + string: "{\r\n \"name\": \"vhrip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1\",\r\n + \ \"etag\": \"W/\\\"57924048-4094-45d0-9c12-213771753be0\\\"\",\r\n \"location\": + \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"8b3303cf-c3bf-40f7-ad4b-09b761c930f8\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n + \ }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/69c941b0-423a-40da-b56a-86e2b20d451c?api-version=2021-02-01 + cache-control: + - no-cache + content-length: + - '692' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 28 Jun 2021 07:42:01 GMT + expires: + - '-1' + 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: + - 74fffc02-3861-4895-ae12-ed31ca49a7b3 + x-ms-ratelimit-remaining-subscription-writes: + - '1195' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.25.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/centraluseuap/operations/69c941b0-423a-40da-b56a-86e2b20d451c?api-version=2021-02-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 28 Jun 2021 07:42:02 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: + - 8639e744-1b8b-44ea-a9ea-c49b57bf5c36 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1?api-version=2021-02-01 + response: + body: + string: "{\r\n \"name\": \"vhrip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1\",\r\n + \ \"etag\": \"W/\\\"519aaf78-d64e-4c26-a49b-9d4679b03a24\\\"\",\r\n \"location\": + \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"8b3303cf-c3bf-40f7-ad4b-09b761c930f8\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '693' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 28 Jun 2021 07:42:02 GMT + etag: + - W/"519aaf78-d64e-4c26-a49b-9d4679b03a24" + 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: + - d10d6e9f-c3c8-467d-ac3d-b1b4db432077 status: code: 200 message: OK @@ -491,9 +703,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2?api-version=2021-02-01 response: @@ -509,7 +721,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:01:46 GMT + - Mon, 28 Jun 2021 07:42:04 GMT expires: - '-1' pragma: @@ -539,15 +751,15 @@ interactions: Content-Type: - application/json ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"afc28613-c72b-4c0e-a900-da4475d98bcb\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"11718abf-910a-42a7-b80a-1502135f9de0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": @@ -558,7 +770,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/13c3ca5c-694d-417a-b4e2-51e07e244a1e?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/151de04d-4606-49e7-b53e-9085dc178815?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -566,7 +778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:01:55 GMT + - Mon, 28 Jun 2021 07:42:13 GMT expires: - '-1' pragma: @@ -579,9 +791,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1b26e474-1bb7-4b1c-967f-1ccfcf8a7a4b + - f1fd06f3-87cf-4be8-b0b7-2e43e3ec0b27 x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1198' status: code: 201 message: Created @@ -597,11 +809,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/13c3ca5c-694d-417a-b4e2-51e07e244a1e?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/151de04d-4606-49e7-b53e-9085dc178815?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -613,7 +825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:02:25 GMT + - Mon, 28 Jun 2021 07:42:43 GMT expires: - '-1' pragma: @@ -630,7 +842,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3e999cee-22b1-4d80-bc54-73abd5d36260 + - bec0e28a-81ac-4dfe-b013-561c956ad2c9 status: code: 200 message: OK @@ -646,15 +858,15 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"afc28613-c72b-4c0e-a900-da4475d98bcb\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"11718abf-910a-42a7-b80a-1502135f9de0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": @@ -669,7 +881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:02:26 GMT + - Mon, 28 Jun 2021 07:42:44 GMT expires: - '-1' pragma: @@ -686,12 +898,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a35f8dca-cbc1-4812-8dde-ee652a0f4bfb + - eecf8a66-cb7c-49ed-8eac-57cde82b5572 status: code: 200 message: OK - request: - body: '{"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet"}}}' + body: '{"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1"}}}' headers: Accept: - application/json @@ -702,34 +915,35 @@ interactions: Connection: - keep-alive Content-Length: - - '256' + - '482' Content-Type: - application/json ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"Default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default\",\r\n - \ \"etag\": \"W/\\\"d0cea4b2-2233-4e73-bcef-f29d0053d273\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d66cbc3a-2549-4bd6-acb0-9696365a4d9b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": - \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\"\r\n + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\"\r\n \ }\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/81aed340-bdeb-47e0-923b-6acf45e07df2?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 cache-control: - no-cache content-length: - - '738' + - '983' content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:02:27 GMT + - Mon, 28 Jun 2021 07:42:45 GMT expires: - '-1' pragma: @@ -742,9 +956,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 29b0bdf9-559a-499a-98e9-ade606302021 + - d22e6463-aa09-4725-912f-f79344e1c38f x-ms-ratelimit-remaining-subscription-writes: - - '1182' + - '1198' status: code: 201 message: Created @@ -760,11 +974,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/81aed340-bdeb-47e0-923b-6acf45e07df2?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -776,7 +990,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:02:37 GMT + - Mon, 28 Jun 2021 07:42:56 GMT expires: - '-1' pragma: @@ -793,7 +1007,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2f522a86-a37a-465b-baff-b3ae1f139ae0 + - f91e94df-3718-42ca-9f2d-4f66703a54a9 status: code: 200 message: OK @@ -809,11 +1023,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/81aed340-bdeb-47e0-923b-6acf45e07df2?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -825,7 +1039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:02:47 GMT + - Mon, 28 Jun 2021 07:43:06 GMT expires: - '-1' pragma: @@ -842,7 +1056,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 301fac7e-c3f1-47ed-aa18-85ac1c32143a + - 1d2351d2-455a-49af-bb73-5a5daddf0864 status: code: 200 message: OK @@ -858,11 +1072,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/81aed340-bdeb-47e0-923b-6acf45e07df2?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -874,7 +1088,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:03:08 GMT + - Mon, 28 Jun 2021 07:43:26 GMT expires: - '-1' pragma: @@ -891,7 +1105,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2c43e5f7-6d9a-4781-91a5-579a266bf1b5 + - cf944f8e-525a-4a16-9ade-ffa140c71e6d status: code: 200 message: OK @@ -907,11 +1121,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/81aed340-bdeb-47e0-923b-6acf45e07df2?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -923,7 +1137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:03:49 GMT + - Mon, 28 Jun 2021 07:44:07 GMT expires: - '-1' pragma: @@ -940,7 +1154,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4a1e8f84-9096-49c7-9bb4-1d0bdba2b722 + - c0381598-e96b-4912-91d5-c40e077f1d83 status: code: 200 message: OK @@ -956,11 +1170,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/81aed340-bdeb-47e0-923b-6acf45e07df2?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -972,7 +1186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:05:09 GMT + - Mon, 28 Jun 2021 07:45:27 GMT expires: - '-1' pragma: @@ -989,7 +1203,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5a27999d-9499-4e7d-bbcc-341a52f8dd75 + - d2556927-adb6-4538-960a-9c31f6e75fb9 status: code: 200 message: OK @@ -1005,11 +1219,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/81aed340-bdeb-47e0-923b-6acf45e07df2?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1021,7 +1235,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:07:50 GMT + - Mon, 28 Jun 2021 07:48:09 GMT expires: - '-1' pragma: @@ -1038,7 +1252,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 34be41e4-581a-4c79-b624-4320d5aa3a6b + - bf430d29-1010-49b9-9408-3a74ee0455a5 status: code: 200 message: OK @@ -1054,11 +1268,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/81aed340-bdeb-47e0-923b-6acf45e07df2?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1070,7 +1284,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:09:31 GMT + - Mon, 28 Jun 2021 07:49:49 GMT expires: - '-1' pragma: @@ -1087,7 +1301,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d3bcb2c8-ff08-4695-8e0b-d0f56668504a + - 603cdff1-2a1e-4775-b5c7-eaf01c06f70e status: code: 200 message: OK @@ -1103,11 +1317,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/81aed340-bdeb-47e0-923b-6acf45e07df2?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1119,7 +1333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:11:12 GMT + - Mon, 28 Jun 2021 07:51:31 GMT expires: - '-1' pragma: @@ -1136,7 +1350,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cb2701a9-f4ef-4570-8761-4d8f4e4c0100 + - 65fd0a41-b0ad-4054-8072-b6647f141db2 status: code: 200 message: OK @@ -1152,11 +1366,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/81aed340-bdeb-47e0-923b-6acf45e07df2?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1168,7 +1382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:12:52 GMT + - Mon, 28 Jun 2021 07:53:12 GMT expires: - '-1' pragma: @@ -1185,7 +1399,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 25c36d1f-68da-496f-b8ac-d673e252dc4e + - 07afa35c-e2c4-483e-b112-ed94ea3745e2 status: code: 200 message: OK @@ -1201,11 +1415,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/81aed340-bdeb-47e0-923b-6acf45e07df2?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1217,7 +1431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:14:33 GMT + - Mon, 28 Jun 2021 07:54:52 GMT expires: - '-1' pragma: @@ -1234,7 +1448,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a81e15f6-6e07-4258-b9d1-70400e2f7523 + - 4aa38ef7-56ef-4358-8458-e430562740bc status: code: 200 message: OK @@ -1250,11 +1464,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/81aed340-bdeb-47e0-923b-6acf45e07df2?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1266,7 +1480,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:16:14 GMT + - Mon, 28 Jun 2021 07:56:33 GMT expires: - '-1' pragma: @@ -1283,7 +1497,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f4dd6660-a609-4f9c-8eec-bbfd377788cb + - 5de29f98-8691-49f1-b874-0d7d34e43a3b status: code: 200 message: OK @@ -1299,11 +1513,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/81aed340-bdeb-47e0-923b-6acf45e07df2?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1315,7 +1529,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:17:55 GMT + - Mon, 28 Jun 2021 07:58:14 GMT expires: - '-1' pragma: @@ -1332,7 +1546,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c454d0fb-674a-4d47-8732-6965745ee080 + - dac15431-af64-449d-97bb-03ed743a5716 status: code: 200 message: OK @@ -1348,11 +1562,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/81aed340-bdeb-47e0-923b-6acf45e07df2?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1364,7 +1578,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:19:35 GMT + - Mon, 28 Jun 2021 07:59:54 GMT expires: - '-1' pragma: @@ -1381,7 +1595,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 001b2372-4c0e-4c8f-9eb9-3dc80269174b + - 5e0fc7a6-f4b1-45ae-985f-6a1904bbdb36 status: code: 200 message: OK @@ -1397,30 +1611,31 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"Default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default\",\r\n - \ \"etag\": \"W/\\\"1108f8a9-7294-42cc-9832-ed0a905c9a31\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b27cbcd8-6fd1-42da-9fe7-356b93f0c320\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": - \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\"\r\n + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\"\r\n \ }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '739' + - '984' content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:19:36 GMT + - Mon, 28 Jun 2021 07:59:54 GMT etag: - - W/"1108f8a9-7294-42cc-9832-ed0a905c9a31" + - W/"b27cbcd8-6fd1-42da-9fe7-356b93f0c320" expires: - '-1' pragma: @@ -1437,7 +1652,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3cb1bda9-2596-4f11-8a6c-5e5fe4ffd16e + - a65e61ce-dfcc-4849-add4-279c980af54c status: code: 200 message: OK @@ -1453,15 +1668,15 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -l -n --hosted-subnet + - -g -l -n --hosted-subnet --public-ip-address User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"1108f8a9-7294-42cc-9832-ed0a905c9a31\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b27cbcd8-6fd1-42da-9fe7-356b93f0c320\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n @@ -1477,7 +1692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:19:37 GMT + - Mon, 28 Jun 2021 07:59:57 GMT expires: - '-1' pragma: @@ -1494,7 +1709,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f25f1c40-14d1-4204-92e6-0479a9044c74 + - 27807629-f360-40d4-b13c-61bb95f3576a status: code: 200 message: OK @@ -1512,13 +1727,13 @@ interactions: ParameterSetName: - -g --name --allow-b2b-traffic User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"1108f8a9-7294-42cc-9832-ed0a905c9a31\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b27cbcd8-6fd1-42da-9fe7-356b93f0c320\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n @@ -1534,7 +1749,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:19:39 GMT + - Mon, 28 Jun 2021 07:59:58 GMT expires: - '-1' pragma: @@ -1551,7 +1766,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 63d3fd0d-4638-4548-9ffa-bbe7fd0efae1 + - 919f3b3a-cac2-4e53-b011-019cdf4ba44f status: code: 200 message: OK @@ -1577,13 +1792,13 @@ interactions: ParameterSetName: - -g --name --allow-b2b-traffic User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"8fcee070-c148-4179-835c-3ae43c361cb4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2ea39dfc-e080-4da0-a3cc-4ce1e67382fd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n @@ -1593,7 +1808,7 @@ interactions: \"ExpressRoute\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/4bc0561d-650b-4cb1-99c7-66e29abf349e?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/460bdea9-e44e-4f6d-beb3-f1e2e3bbe19e?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -1601,7 +1816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:19:40 GMT + - Mon, 28 Jun 2021 07:59:59 GMT expires: - '-1' pragma: @@ -1618,9 +1833,107 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - afe19912-c218-4ec9-aebd-ebc7fbc1c0c6 + - 7b395efe-7ecf-4427-a665-ce43aa021919 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network routeserver update + Connection: + - keep-alive + ParameterSetName: + - -g --name --allow-b2b-traffic + User-Agent: + - AZURECLI/2.25.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/centraluseuap/operations/460bdea9-e44e-4f6d-beb3-f1e2e3bbe19e?api-version=2021-02-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: + - Mon, 28 Jun 2021 08:00:09 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: + - aea0ee88-56eb-4628-8546-093b0f0d0364 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network routeserver update + Connection: + - keep-alive + ParameterSetName: + - -g --name --allow-b2b-traffic + User-Agent: + - AZURECLI/2.25.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/centraluseuap/operations/460bdea9-e44e-4f6d-beb3-f1e2e3bbe19e?api-version=2021-02-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: + - Mon, 28 Jun 2021 08:00:19 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: + - 457e9c36-ff98-4e13-a8e9-ec2703f01a02 status: code: 200 message: OK @@ -1638,9 +1951,9 @@ interactions: ParameterSetName: - -g --name --allow-b2b-traffic User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/4bc0561d-650b-4cb1-99c7-66e29abf349e?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/460bdea9-e44e-4f6d-beb3-f1e2e3bbe19e?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1652,7 +1965,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:19:50 GMT + - Mon, 28 Jun 2021 08:00:41 GMT expires: - '-1' pragma: @@ -1669,7 +1982,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 338b7f06-e7b0-4f30-9ee7-7936c899ddfe + - c4aace1c-d08e-469d-a6db-550c1579afe3 status: code: 200 message: OK @@ -1687,9 +2000,9 @@ interactions: ParameterSetName: - -g --name --allow-b2b-traffic User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/4bc0561d-650b-4cb1-99c7-66e29abf349e?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/460bdea9-e44e-4f6d-beb3-f1e2e3bbe19e?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1701,7 +2014,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:20:10 GMT + - Mon, 28 Jun 2021 08:01:21 GMT expires: - '-1' pragma: @@ -1718,7 +2031,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5c245ddb-aa18-49f1-b1dd-167f80497eab + - e0c9593a-36bd-4bb6-a682-10b3ead3ea3a status: code: 200 message: OK @@ -1736,9 +2049,9 @@ interactions: ParameterSetName: - -g --name --allow-b2b-traffic User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/4bc0561d-650b-4cb1-99c7-66e29abf349e?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/460bdea9-e44e-4f6d-beb3-f1e2e3bbe19e?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1750,7 +2063,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:20:50 GMT + - Mon, 28 Jun 2021 08:02:41 GMT expires: - '-1' pragma: @@ -1767,7 +2080,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - baa53a26-5e98-48f9-81ce-cd6278954f56 + - c4aec376-5da7-4a1e-adad-07200d14dffa status: code: 200 message: OK @@ -1785,13 +2098,13 @@ interactions: ParameterSetName: - -g --name --allow-b2b-traffic User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"dbbed23c-3886-4f9a-99f4-a92f8595158b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8c45c051-0396-4ace-8ec1-a3bcbe2bfa11\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n @@ -1807,7 +2120,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:20:51 GMT + - Mon, 28 Jun 2021 08:02:42 GMT expires: - '-1' pragma: @@ -1824,7 +2137,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 04ef4849-ae77-45f2-ad52-b3aecebb8284 + - 8ba6d086-ab8f-4266-aba7-04e4c582fbf7 status: code: 200 message: OK @@ -1842,14 +2155,14 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs?api-version=2021-02-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"dbbed23c-3886-4f9a-99f4-a92f8595158b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8c45c051-0396-4ace-8ec1-a3bcbe2bfa11\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": @@ -1866,7 +2179,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:20:52 GMT + - Mon, 28 Jun 2021 08:02:43 GMT expires: - '-1' pragma: @@ -1883,7 +2196,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6fe537a7-4010-48da-ad8c-b003de6c7ed7 + - 6c4901ef-c0c5-41c8-bb5b-09b669e5b592 status: code: 200 message: OK @@ -1901,13 +2214,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"dbbed23c-3886-4f9a-99f4-a92f8595158b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8c45c051-0396-4ace-8ec1-a3bcbe2bfa11\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n @@ -1923,7 +2236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:20:53 GMT + - Mon, 28 Jun 2021 08:02:44 GMT expires: - '-1' pragma: @@ -1940,7 +2253,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2c44166d-f37d-45aa-9119-7207ddc42af6 + - 7ee54741-e446-4e8d-b5af-6c36672422ff status: code: 200 message: OK @@ -1962,19 +2275,19 @@ interactions: ParameterSetName: - -g --routeserver -n --peer-asn --peer-ip User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"peer1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1\",\r\n - \ \"etag\": \"W/\\\"e6463f65-44b5-49b7-8f80-fb0f14facdcc\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e9b9864d-c89e-4f6d-b076-04dce4f48825\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Updating\",\r\n \"peerIp\": \"10.0.0.120\",\r\n \ \"peerAsn\": 11000\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/62a640ea-ad89-4804-b4fe-96969bb4bbe0?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/ed265586-d778-4d8c-88be-342869b51db0?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -1982,7 +2295,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:20:54 GMT + - Mon, 28 Jun 2021 08:02:45 GMT expires: - '-1' pragma: @@ -1995,9 +2308,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1d564a7e-98c0-4f60-95b0-7aaadd338489 + - 4c224f13-4406-43eb-a295-16f5410e96b7 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -2015,9 +2328,9 @@ interactions: ParameterSetName: - -g --routeserver -n --peer-asn --peer-ip User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/62a640ea-ad89-4804-b4fe-96969bb4bbe0?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/ed265586-d778-4d8c-88be-342869b51db0?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2029,7 +2342,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:21:04 GMT + - Mon, 28 Jun 2021 08:02:55 GMT expires: - '-1' pragma: @@ -2046,7 +2359,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f48a36a4-7704-4181-9b02-58097cd3fdc9 + - 6def7ebc-d135-4af5-b918-2ec6fc1b200c status: code: 200 message: OK @@ -2064,9 +2377,9 @@ interactions: ParameterSetName: - -g --routeserver -n --peer-asn --peer-ip User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/62a640ea-ad89-4804-b4fe-96969bb4bbe0?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/ed265586-d778-4d8c-88be-342869b51db0?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2078,7 +2391,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:21:14 GMT + - Mon, 28 Jun 2021 08:03:05 GMT expires: - '-1' pragma: @@ -2095,7 +2408,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 93ce1ad5-185c-4de5-8984-ab1661f4f780 + - fb4adf1d-b6c2-4800-9bf7-22a8ecb76501 status: code: 200 message: OK @@ -2113,9 +2426,9 @@ interactions: ParameterSetName: - -g --routeserver -n --peer-asn --peer-ip User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/62a640ea-ad89-4804-b4fe-96969bb4bbe0?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/ed265586-d778-4d8c-88be-342869b51db0?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2127,7 +2440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:21:35 GMT + - Mon, 28 Jun 2021 08:03:26 GMT expires: - '-1' pragma: @@ -2144,7 +2457,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3807cba7-4b0e-4497-bd44-e6568b88ac88 + - a0ca1a23-950e-43c0-bad4-22331e11479c status: code: 200 message: OK @@ -2162,9 +2475,9 @@ interactions: ParameterSetName: - -g --routeserver -n --peer-asn --peer-ip User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/62a640ea-ad89-4804-b4fe-96969bb4bbe0?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/ed265586-d778-4d8c-88be-342869b51db0?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2176,7 +2489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:22:18 GMT + - Mon, 28 Jun 2021 08:04:07 GMT expires: - '-1' pragma: @@ -2193,7 +2506,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 91423133-3c9b-4070-bfb8-06dbbba7bcb2 + - ec6c1403-8c92-4e00-96c4-6e1798751e50 status: code: 200 message: OK @@ -2211,13 +2524,13 @@ interactions: ParameterSetName: - -g --routeserver -n --peer-asn --peer-ip User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"peer1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1\",\r\n - \ \"etag\": \"W/\\\"fb7fe762-16a7-4e2f-bd5c-5bff7ccc3ef5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3e10e0ab-7df5-47e2-911e-25105431b7fc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"peerIp\": \"10.0.0.120\",\r\n \ \"peerAsn\": 11000\r\n }\r\n}" @@ -2229,9 +2542,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:22:18 GMT + - Mon, 28 Jun 2021 08:04:07 GMT etag: - - W/"fb7fe762-16a7-4e2f-bd5c-5bff7ccc3ef5" + - W/"3e10e0ab-7df5-47e2-911e-25105431b7fc" expires: - '-1' pragma: @@ -2248,7 +2561,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f164c208-e4b5-4aba-859e-e11322002f1f + - dd615ac9-24cb-43f0-83c8-b335bb18766c status: code: 200 message: OK @@ -2266,14 +2579,14 @@ interactions: ParameterSetName: - -g --routeserver User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections?api-version=2021-02-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"peer1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1\",\r\n - \ \"etag\": \"W/\\\"fb7fe762-16a7-4e2f-bd5c-5bff7ccc3ef5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3e10e0ab-7df5-47e2-911e-25105431b7fc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peerIp\": \"10.0.0.120\",\r\n \"peerAsn\": 11000\r\n }\r\n }\r\n ]\r\n}" @@ -2285,7 +2598,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:22:20 GMT + - Mon, 28 Jun 2021 08:04:08 GMT expires: - '-1' pragma: @@ -2302,7 +2615,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 93820ef9-6795-4525-955f-c4b2fae8b2ae + - 1c9280a7-1710-480f-a0a8-6626af31e07c status: code: 200 message: OK @@ -2320,13 +2633,13 @@ interactions: ParameterSetName: - -g --routeserver -n User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"peer1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1\",\r\n - \ \"etag\": \"W/\\\"fb7fe762-16a7-4e2f-bd5c-5bff7ccc3ef5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3e10e0ab-7df5-47e2-911e-25105431b7fc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"peerIp\": \"10.0.0.120\",\r\n \ \"peerAsn\": 11000\r\n }\r\n}" @@ -2338,9 +2651,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:22:21 GMT + - Mon, 28 Jun 2021 08:04:09 GMT etag: - - W/"fb7fe762-16a7-4e2f-bd5c-5bff7ccc3ef5" + - W/"3e10e0ab-7df5-47e2-911e-25105431b7fc" expires: - '-1' pragma: @@ -2357,7 +2670,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8c80fe8b-ab36-499e-a133-2d506f837092 + - dd57ecb2-a67b-4f9c-a338-96336d9ad0ba status: code: 200 message: OK @@ -2377,7 +2690,7 @@ interactions: ParameterSetName: - -g --routeserver -n User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1/advertisedRoutes?api-version=2021-02-01 response: @@ -2391,11 +2704,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:22:22 GMT + - Mon, 28 Jun 2021 08:04:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/ce1666af-58ce-4248-9ad9-f0822eb05784?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/e9b80330-0b3e-4136-9fa1-1077ff901612?api-version=2021-02-01 pragma: - no-cache server: @@ -2406,7 +2719,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5172513b-57bb-4e7c-bf32-742c77ee30b6 + - d48f80b3-679a-4d57-bb7f-4ce06014b556 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2426,9 +2739,9 @@ interactions: ParameterSetName: - -g --routeserver -n User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operationResults/ce1666af-58ce-4248-9ad9-f0822eb05784?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/e9b80330-0b3e-4136-9fa1-1077ff901612?api-version=2021-02-01 response: body: string: "{\r\n \"RouteServiceRole_IN_0\": [],\r\n \"RouteServiceRole_IN_1\": @@ -2441,11 +2754,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:22:32 GMT + - Mon, 28 Jun 2021 08:04:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/ce1666af-58ce-4248-9ad9-f0822eb05784?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/e9b80330-0b3e-4136-9fa1-1077ff901612?api-version=2021-02-01 pragma: - no-cache server: @@ -2460,7 +2773,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5172513b-57bb-4e7c-bf32-742c77ee30b6 + - d48f80b3-679a-4d57-bb7f-4ce06014b556 status: code: 200 message: OK @@ -2480,7 +2793,7 @@ interactions: ParameterSetName: - -g --routeserver -n User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1/learnedRoutes?api-version=2021-02-01 response: @@ -2494,11 +2807,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:22:34 GMT + - Mon, 28 Jun 2021 08:04:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/e3bc25a0-28aa-4ab6-b397-b58ba0be52d6?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/2eec4985-70a6-4bde-8f3d-a9eb143b5cd8?api-version=2021-02-01 pragma: - no-cache server: @@ -2509,9 +2822,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f517f732-5f68-4cc6-a2c7-1403ddf5b1ad + - 5bf85d25-cd42-4cfa-96c7-711a01187c22 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -2529,9 +2842,9 @@ interactions: ParameterSetName: - -g --routeserver -n User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operationResults/e3bc25a0-28aa-4ab6-b397-b58ba0be52d6?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/2eec4985-70a6-4bde-8f3d-a9eb143b5cd8?api-version=2021-02-01 response: body: string: "{\r\n \"RouteServiceRole_IN_0\": [],\r\n \"RouteServiceRole_IN_1\": @@ -2544,11 +2857,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:22:44 GMT + - Mon, 28 Jun 2021 08:04:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/e3bc25a0-28aa-4ab6-b397-b58ba0be52d6?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/2eec4985-70a6-4bde-8f3d-a9eb143b5cd8?api-version=2021-02-01 pragma: - no-cache server: @@ -2563,7 +2876,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f517f732-5f68-4cc6-a2c7-1403ddf5b1ad + - 5bf85d25-cd42-4cfa-96c7-711a01187c22 status: code: 200 message: OK @@ -2583,7 +2896,7 @@ interactions: ParameterSetName: - -g --routeserver -n -y User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1?api-version=2021-02-01 response: @@ -2591,17 +2904,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/c89bab13-08d6-4031-8489-040308a3fac9?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/04f060e2-1e2b-484e-aceb-dcf98cd3d43d?api-version=2021-02-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 14 May 2021 07:22:45 GMT + - Mon, 28 Jun 2021 08:04:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/c89bab13-08d6-4031-8489-040308a3fac9?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/04f060e2-1e2b-484e-aceb-dcf98cd3d43d?api-version=2021-02-01 pragma: - no-cache server: @@ -2612,9 +2925,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ebaf72d2-b4ea-4a60-9909-a878952f3a85 + - 0a4825e0-ba98-4631-881b-1c1ad1f456f0 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -2632,9 +2945,9 @@ interactions: ParameterSetName: - -g --routeserver -n -y User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/c89bab13-08d6-4031-8489-040308a3fac9?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/04f060e2-1e2b-484e-aceb-dcf98cd3d43d?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2646,7 +2959,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:22:56 GMT + - Mon, 28 Jun 2021 08:04:44 GMT expires: - '-1' pragma: @@ -2663,7 +2976,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 51eab228-5b43-4128-8a3b-ac64466ff5e8 + - 8183e3ce-0cbb-41ce-933e-09165f49a002 status: code: 200 message: OK @@ -2681,9 +2994,9 @@ interactions: ParameterSetName: - -g --routeserver -n -y User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/c89bab13-08d6-4031-8489-040308a3fac9?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/04f060e2-1e2b-484e-aceb-dcf98cd3d43d?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2695,7 +3008,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:23:06 GMT + - Mon, 28 Jun 2021 08:04:54 GMT expires: - '-1' pragma: @@ -2712,7 +3025,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 690626bc-826f-42a2-9469-9f58be4afe9a + - fce9ff7b-c815-4d6a-9b36-1f0d80eedc69 status: code: 200 message: OK @@ -2730,9 +3043,9 @@ interactions: ParameterSetName: - -g --routeserver -n -y User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/c89bab13-08d6-4031-8489-040308a3fac9?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/04f060e2-1e2b-484e-aceb-dcf98cd3d43d?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2744,7 +3057,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:23:26 GMT + - Mon, 28 Jun 2021 08:05:15 GMT expires: - '-1' pragma: @@ -2761,7 +3074,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3e8efc99-a57f-41fd-8661-134d2516aca6 + - 81b34cb1-6880-4698-bbea-73b00bb33300 status: code: 200 message: OK @@ -2779,9 +3092,9 @@ interactions: ParameterSetName: - -g --routeserver -n -y User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/c89bab13-08d6-4031-8489-040308a3fac9?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/04f060e2-1e2b-484e-aceb-dcf98cd3d43d?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2793,7 +3106,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:24:06 GMT + - Mon, 28 Jun 2021 08:05:55 GMT expires: - '-1' pragma: @@ -2810,7 +3123,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f7c72c93-dca5-49a8-8f71-68ca2b4d409c + - 1097b48c-7837-4085-a005-4acf34971a24 status: code: 200 message: OK @@ -2830,7 +3143,7 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default?api-version=2021-02-01 response: @@ -2838,17 +3151,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/9fde87fa-425e-4e0f-b13f-544d7c60a078?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 14 May 2021 07:24:08 GMT + - Mon, 28 Jun 2021 08:05:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/9fde87fa-425e-4e0f-b13f-544d7c60a078?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-01 pragma: - no-cache server: @@ -2859,9 +3172,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6019893b-5647-48bf-a534-eb0aeabd6e0b + - 13512f57-80b8-4d06-bee5-798a87b66b0b x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted @@ -2879,9 +3192,58 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-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: + - Mon, 28 Jun 2021 08:06:07 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: + - fa0ccab8-f08d-4e0c-88c1-793d5fc2f445 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network routeserver delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -y + User-Agent: + - AZURECLI/2.25.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/centraluseuap/operations/9fde87fa-425e-4e0f-b13f-544d7c60a078?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2893,7 +3255,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:24:18 GMT + - Mon, 28 Jun 2021 08:06:17 GMT expires: - '-1' pragma: @@ -2910,7 +3272,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d579fcb0-8781-4d3f-b5d3-b8afe773f53b + - d0914881-fc7d-4bba-a291-07c62ac1acb7 status: code: 200 message: OK @@ -2928,9 +3290,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/9fde87fa-425e-4e0f-b13f-544d7c60a078?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2942,7 +3304,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:24:29 GMT + - Mon, 28 Jun 2021 08:06:38 GMT expires: - '-1' pragma: @@ -2959,7 +3321,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 233836d8-0447-44bd-85e0-415e95181015 + - 73918579-56a8-4efa-898e-f354b543ba66 status: code: 200 message: OK @@ -2977,9 +3339,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/9fde87fa-425e-4e0f-b13f-544d7c60a078?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2991,7 +3353,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:24:50 GMT + - Mon, 28 Jun 2021 08:07:18 GMT expires: - '-1' pragma: @@ -3008,7 +3370,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0d15fdbf-8def-4726-8102-a46e36268f7d + - 3115a66c-421a-4b05-9313-7561f156c106 status: code: 200 message: OK @@ -3026,9 +3388,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/9fde87fa-425e-4e0f-b13f-544d7c60a078?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3040,7 +3402,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:25:30 GMT + - Mon, 28 Jun 2021 08:08:39 GMT expires: - '-1' pragma: @@ -3057,7 +3419,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a34a5cc3-8cb4-4847-a00c-f2356764fb42 + - e8d04480-a57f-4ce7-9cc3-270503d25743 status: code: 200 message: OK @@ -3075,9 +3437,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/9fde87fa-425e-4e0f-b13f-544d7c60a078?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3089,7 +3451,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:26:50 GMT + - Mon, 28 Jun 2021 08:11:19 GMT expires: - '-1' pragma: @@ -3106,7 +3468,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6f40576f-4f54-4d99-a38b-400613fc7cd1 + - f64d0d62-0f10-4864-b6f4-47df123705d6 status: code: 200 message: OK @@ -3126,7 +3488,7 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2?api-version=2021-02-01 response: @@ -3136,17 +3498,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/43e05d9b-2aac-4bb7-956c-3a648f8f3d94?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/79d97cc9-03ec-40b7-8e59-1ea2de543160?api-version=2021-02-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 14 May 2021 07:26:53 GMT + - Mon, 28 Jun 2021 08:11:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/43e05d9b-2aac-4bb7-956c-3a648f8f3d94?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/79d97cc9-03ec-40b7-8e59-1ea2de543160?api-version=2021-02-01 pragma: - no-cache server: @@ -3157,9 +3519,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8ce7d4d2-caa0-4286-99a1-7fa01b3a079d + - 4a2fd7bf-ef0c-42f3-8829-5bd11d3cf499 x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted @@ -3177,9 +3539,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.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/centraluseuap/operations/43e05d9b-2aac-4bb7-956c-3a648f8f3d94?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/79d97cc9-03ec-40b7-8e59-1ea2de543160?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3191,7 +3553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 07:27:03 GMT + - Mon, 28 Jun 2021 08:11:32 GMT expires: - '-1' pragma: @@ -3208,7 +3570,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e9ab3810-b030-4d0e-9519-d09d7516e29a + - f14ee57c-f5ea-44c3-8864-0563674d8590 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 410baff4e26..3f4c2a231b1 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 @@ -3847,6 +3847,7 @@ def test_network_virtual_hub_router_scenario(self, resource_group, resource_grou 'rg': resource_group, 'location': resource_group_location, 'vnet': 'vnet2', + 'vhr_ip1': 'vhrip1', 'subnet1': 'RouteServerSubnet', 'vrouter': 'vrouter2', 'peer': 'peer1' @@ -3861,13 +3862,14 @@ def test_network_virtual_hub_router_scenario(self, resource_group, resource_grou # which will block subnet is assigned to the virtual router self.cmd('network vnet subnet update -g {rg} --vnet-name {vnet} -n {subnet1} --remove networkSecurityGroup') vnet = self.cmd('network vnet show -g {rg} -n {vnet}').get_output_in_json() + self.cmd('network public-ip create -g {rg} -n {vhr_ip1}') self.kwargs.update({ 'subnet1_id': vnet['subnets'][0]['id'] }) self.cmd('network routeserver create -g {rg} -l {location} -n {vrouter} ' - '--hosted-subnet {subnet1_id}', + '--hosted-subnet {subnet1_id} --public-ip-address {vhr_ip1}', checks=[ self.check('type', 'Microsoft.Network/virtualHubs'), self.check('ipConfigurations', None), From cf093147ea8a701f08282a8787e7ccc298c0c14a Mon Sep 17 00:00:00 2001 From: Kai Ru Date: Wed, 30 Jun 2021 10:11:56 +0800 Subject: [PATCH 2/3] change the default ip configuration name to align with powershell --- .../cli/command_modules/network/custom.py | 11 +- ...t_network_virtual_hub_router_scenario.yaml | 538 ++++++++++-------- 2 files changed, 304 insertions(+), 245 deletions(-) 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 65dc292cd90..284c098416a 100644 --- a/src/azure-cli/azure/cli/command_modules/network/custom.py +++ b/src/azure-cli/azure/cli/command_modules/network/custom.py @@ -7020,12 +7020,12 @@ def create_virtual_hub(cmd, client, vhub_ip_config_client = network_client_factory(cmd.cli_ctx).virtual_hub_ip_configuration try: vhub_ip_poller = vhub_ip_config_client.begin_create_or_update( - resource_group_name, virtual_hub_name, 'Default', ip_config) + resource_group_name, virtual_hub_name, 'ipconfig1', ip_config) LongRunningOperation(cmd.cli_ctx)(vhub_ip_poller) except Exception as ex: logger.error(ex) try: - vhub_ip_config_client.begin_delete(resource_group_name, virtual_hub_name, 'Default') + vhub_ip_config_client.begin_delete(resource_group_name, virtual_hub_name, 'ipconfig1') except HttpResponseError: pass client.begin_delete(resource_group_name, virtual_hub_name) @@ -7050,8 +7050,11 @@ def update_virtual_hub(cmd, instance, def delete_virtual_hub(cmd, client, resource_group_name, virtual_hub_name, no_wait=False): from azure.cli.core.commands import LongRunningOperation vhub_ip_config_client = network_client_factory(cmd.cli_ctx).virtual_hub_ip_configuration - poller = vhub_ip_config_client.begin_delete(resource_group_name, virtual_hub_name, 'Default') - LongRunningOperation(cmd.cli_ctx)(poller) + ip_configs = list(vhub_ip_config_client.list(resource_group_name, virtual_hub_name)) + if ip_configs: + ip_config = ip_configs[0] # There will always be only 1 + poller = vhub_ip_config_client.begin_delete(resource_group_name, virtual_hub_name, ip_config.name) + LongRunningOperation(cmd.cli_ctx)(poller) return sdk_no_wait(no_wait, client.begin_delete, resource_group_name, virtual_hub_name) diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_virtual_hub_router_scenario.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_virtual_hub_router_scenario.yaml index 941b1ba973f..bd33872b7d3 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_virtual_hub_router_scenario.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_virtual_hub_router_scenario.yaml @@ -26,15 +26,15 @@ interactions: response: body: string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2\",\r\n - \ \"etag\": \"W/\\\"2befd64d-ee43-427f-abe9-bde04890ccb5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9b4faac7-0a84-488d-b104-5b1d94e92197\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"d4cf0e4d-cf74-4498-bfd9-9946c9fd8fc7\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"e902590f-90ba-4839-b9b2-6ff81a3469c0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"RouteServerSubnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"2befd64d-ee43-427f-abe9-bde04890ccb5\\\"\",\r\n + \ \"etag\": \"W/\\\"9b4faac7-0a84-488d-b104-5b1d94e92197\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -45,7 +45,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/92895d4d-5e5f-4f5f-b6bc-b9f53acbee85?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/0d819f34-c2d7-4270-becc-dcc1bc94cb5f?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -53,7 +53,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:41:14 GMT + - Wed, 30 Jun 2021 01:35:38 GMT expires: - '-1' pragma: @@ -66,9 +66,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eb92a547-af2b-41e6-857d-a7a1e1ec4c36 + - e83c4f29-9fde-4e91-9767-52e2dcfd2b36 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -88,7 +88,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/92895d4d-5e5f-4f5f-b6bc-b9f53acbee85?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/0d819f34-c2d7-4270-becc-dcc1bc94cb5f?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -100,7 +100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:41:17 GMT + - Wed, 30 Jun 2021 01:35:41 GMT expires: - '-1' pragma: @@ -117,7 +117,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c30956e7-6580-41df-b738-38278671eca7 + - ecb58c10-d4d2-4214-bcd5-b29c8161d180 status: code: 200 message: OK @@ -141,15 +141,15 @@ interactions: response: body: string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2\",\r\n - \ \"etag\": \"W/\\\"b96aae94-f471-4dc4-a09b-070221dbf5c2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f17beaf0-408c-4610-95ef-02902cc5a27b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"d4cf0e4d-cf74-4498-bfd9-9946c9fd8fc7\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"e902590f-90ba-4839-b9b2-6ff81a3469c0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"RouteServerSubnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"b96aae94-f471-4dc4-a09b-070221dbf5c2\\\"\",\r\n + \ \"etag\": \"W/\\\"f17beaf0-408c-4610-95ef-02902cc5a27b\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -164,9 +164,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:41:18 GMT + - Wed, 30 Jun 2021 01:35:42 GMT etag: - - W/"b96aae94-f471-4dc4-a09b-070221dbf5c2" + - W/"f17beaf0-408c-4610-95ef-02902cc5a27b" expires: - '-1' pragma: @@ -183,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 74b82c1c-d5a7-440d-819f-12c42d0688f7 + - 4e26844c-9460-41df-a9b0-d289fa8da6aa status: code: 200 message: OK @@ -207,7 +207,7 @@ interactions: response: body: string: "{\r\n \"name\": \"RouteServerSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"b96aae94-f471-4dc4-a09b-070221dbf5c2\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"f17beaf0-408c-4610-95ef-02902cc5a27b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -220,9 +220,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:41:20 GMT + - Wed, 30 Jun 2021 01:35:43 GMT etag: - - W/"b96aae94-f471-4dc4-a09b-070221dbf5c2" + - W/"f17beaf0-408c-4610-95ef-02902cc5a27b" expires: - '-1' pragma: @@ -239,7 +239,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3285a01c-8417-4b07-ab8d-cecc42554282 + - e888b51e-777a-45d6-b317-8eeb604ffcbf status: code: 200 message: OK @@ -270,14 +270,14 @@ interactions: response: body: string: "{\r\n \"name\": \"RouteServerSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"baa70996-bb4b-4cfd-94e7-0847f6f4d2b7\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"51c10b4a-01eb-485e-9766-1ff72c65d82b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/a0332e18-dbd5-4927-8e3b-490ebaf95ad5?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/1e4f27a2-bc1a-45b0-9ed7-fda7d6462cc2?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -285,7 +285,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:41:21 GMT + - Wed, 30 Jun 2021 01:35:44 GMT expires: - '-1' pragma: @@ -302,9 +302,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a19f8e0d-e1c0-4288-9c0c-4eb58808e27c + - 16989060-2122-4eb7-9bd7-309f6d7a3e3b x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -324,7 +324,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/a0332e18-dbd5-4927-8e3b-490ebaf95ad5?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/1e4f27a2-bc1a-45b0-9ed7-fda7d6462cc2?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -336,7 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:41:51 GMT + - Wed, 30 Jun 2021 01:36:14 GMT expires: - '-1' pragma: @@ -353,7 +353,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1a97b22f-3fcf-457a-8f50-140c602815c6 + - 2af3d75f-2484-4415-8c03-18ff31e41847 status: code: 200 message: OK @@ -377,7 +377,7 @@ interactions: response: body: string: "{\r\n \"name\": \"RouteServerSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"baa70996-bb4b-4cfd-94e7-0847f6f4d2b7\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"51c10b4a-01eb-485e-9766-1ff72c65d82b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -390,9 +390,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:41:51 GMT + - Wed, 30 Jun 2021 01:36:14 GMT etag: - - W/"baa70996-bb4b-4cfd-94e7-0847f6f4d2b7" + - W/"51c10b4a-01eb-485e-9766-1ff72c65d82b" expires: - '-1' pragma: @@ -409,7 +409,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a74ec872-9b0f-4ffa-87c7-774912773e44 + - 8eca6660-abd7-45c7-8c0d-8b90a90c96ca status: code: 200 message: OK @@ -433,15 +433,15 @@ interactions: response: body: string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2\",\r\n - \ \"etag\": \"W/\\\"baa70996-bb4b-4cfd-94e7-0847f6f4d2b7\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"51c10b4a-01eb-485e-9766-1ff72c65d82b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"d4cf0e4d-cf74-4498-bfd9-9946c9fd8fc7\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"e902590f-90ba-4839-b9b2-6ff81a3469c0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"RouteServerSubnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"baa70996-bb4b-4cfd-94e7-0847f6f4d2b7\\\"\",\r\n + \ \"etag\": \"W/\\\"51c10b4a-01eb-485e-9766-1ff72c65d82b\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -456,9 +456,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:41:53 GMT + - Wed, 30 Jun 2021 01:36:16 GMT etag: - - W/"baa70996-bb4b-4cfd-94e7-0847f6f4d2b7" + - W/"51c10b4a-01eb-485e-9766-1ff72c65d82b" expires: - '-1' pragma: @@ -475,7 +475,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f291e340-af42-4421-b62f-4ec99cbfc24a + - ddb4275d-1f98-414b-9c3c-05d588de344a status: code: 200 message: OK @@ -498,7 +498,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_virtual_hub_router000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001","name":"cli_test_virtual_hub_router000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-06-28T07:40:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001","name":"cli_test_virtual_hub_router000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-06-30T01:35:18Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -507,7 +507,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:41:53 GMT + - Wed, 30 Jun 2021 01:36:16 GMT expires: - '-1' pragma: @@ -546,9 +546,9 @@ interactions: response: body: string: "{\r\n \"name\": \"vhrip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1\",\r\n - \ \"etag\": \"W/\\\"57924048-4094-45d0-9c12-213771753be0\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"34e5a7b6-9df5-4c40-ad34-e1e3d1a2e9b1\\\"\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"8b3303cf-c3bf-40f7-ad4b-09b761c930f8\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"3a7bc49e-2d58-42db-8836-eedb8cb61253\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n @@ -557,7 +557,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/69c941b0-423a-40da-b56a-86e2b20d451c?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/635a1e38-752c-4073-a067-086720c65136?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -565,7 +565,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:42:01 GMT + - Wed, 30 Jun 2021 01:36:20 GMT expires: - '-1' pragma: @@ -578,9 +578,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 74fffc02-3861-4895-ae12-ed31ca49a7b3 + - 71350464-b480-4285-a3d0-1165438be912 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -600,7 +600,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/69c941b0-423a-40da-b56a-86e2b20d451c?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/635a1e38-752c-4073-a067-086720c65136?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -612,7 +612,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:42:02 GMT + - Wed, 30 Jun 2021 01:36:21 GMT expires: - '-1' pragma: @@ -629,7 +629,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8639e744-1b8b-44ea-a9ea-c49b57bf5c36 + - 43cd714f-5433-42fe-ace0-aaa2b3df5cd8 status: code: 200 message: OK @@ -653,9 +653,9 @@ interactions: response: body: string: "{\r\n \"name\": \"vhrip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1\",\r\n - \ \"etag\": \"W/\\\"519aaf78-d64e-4c26-a49b-9d4679b03a24\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"23a62c9b-bce0-481b-87fe-2dc69eab8441\\\"\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8b3303cf-c3bf-40f7-ad4b-09b761c930f8\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"3a7bc49e-2d58-42db-8836-eedb8cb61253\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n @@ -668,9 +668,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:42:02 GMT + - Wed, 30 Jun 2021 01:36:22 GMT etag: - - W/"519aaf78-d64e-4c26-a49b-9d4679b03a24" + - W/"23a62c9b-bce0-481b-87fe-2dc69eab8441" expires: - '-1' pragma: @@ -687,7 +687,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d10d6e9f-c3c8-467d-ac3d-b1b4db432077 + - 1883e091-3b6a-496f-8dd8-7d7a19bf609c status: code: 200 message: OK @@ -721,7 +721,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:42:04 GMT + - Wed, 30 Jun 2021 01:36:22 GMT expires: - '-1' pragma: @@ -759,7 +759,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"11718abf-910a-42a7-b80a-1502135f9de0\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2f353685-2249-4aba-ab13-91bc5c8d0279\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": @@ -770,7 +770,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/151de04d-4606-49e7-b53e-9085dc178815?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/961069dd-fa37-4a13-aab9-63ef47b4906d?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -778,7 +778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:42:13 GMT + - Wed, 30 Jun 2021 01:36:26 GMT expires: - '-1' pragma: @@ -791,9 +791,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f1fd06f3-87cf-4be8-b0b7-2e43e3ec0b27 + - 6bcd4bc0-c897-456e-b92a-59ab4ef26c74 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -813,7 +813,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/151de04d-4606-49e7-b53e-9085dc178815?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/961069dd-fa37-4a13-aab9-63ef47b4906d?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -825,7 +825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:42:43 GMT + - Wed, 30 Jun 2021 01:36:57 GMT expires: - '-1' pragma: @@ -842,7 +842,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bec0e28a-81ac-4dfe-b013-561c956ad2c9 + - 3aef06a4-6b80-40b5-8253-ca9d41036e98 status: code: 200 message: OK @@ -866,7 +866,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"11718abf-910a-42a7-b80a-1502135f9de0\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2f353685-2249-4aba-ab13-91bc5c8d0279\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": @@ -881,7 +881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:42:44 GMT + - Wed, 30 Jun 2021 01:36:57 GMT expires: - '-1' pragma: @@ -898,7 +898,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eecf8a66-cb7c-49ed-8eac-57cde82b5572 + - bf696bcc-1165-45c3-91e8-91a1b775957d status: code: 200 message: OK @@ -923,11 +923,11 @@ interactions: User-Agent: - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/ipconfig1?api-version=2021-02-01 response: body: - string: "{\r\n \"name\": \"Default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default\",\r\n - \ \"etag\": \"W/\\\"d66cbc3a-2549-4bd6-acb0-9696365a4d9b\\\"\",\r\n \"type\": + string: "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"e966f31c-5e7e-4f33-bdd4-197f4be269e1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1\"\r\n @@ -935,15 +935,15 @@ interactions: \ }\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 cache-control: - no-cache content-length: - - '983' + - '987' content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:42:45 GMT + - Wed, 30 Jun 2021 01:36:58 GMT expires: - '-1' pragma: @@ -956,7 +956,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d22e6463-aa09-4725-912f-f79344e1c38f + - 328c4ed6-0d1a-421a-aca9-54059d766526 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -978,7 +978,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -990,7 +990,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:42:56 GMT + - Wed, 30 Jun 2021 01:37:09 GMT expires: - '-1' pragma: @@ -1007,7 +1007,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f91e94df-3718-42ca-9f2d-4f66703a54a9 + - 287308c3-def1-4b58-a28c-a960b4b1d2ee status: code: 200 message: OK @@ -1027,7 +1027,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1039,7 +1039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:43:06 GMT + - Wed, 30 Jun 2021 01:37:20 GMT expires: - '-1' pragma: @@ -1056,7 +1056,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1d2351d2-455a-49af-bb73-5a5daddf0864 + - 1c534bef-df98-48f2-b0c0-d36b1c9283d8 status: code: 200 message: OK @@ -1076,7 +1076,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1088,7 +1088,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:43:26 GMT + - Wed, 30 Jun 2021 01:37:40 GMT expires: - '-1' pragma: @@ -1105,7 +1105,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cf944f8e-525a-4a16-9ade-ffa140c71e6d + - fbeaa542-3b28-4e81-86de-2aefb99e5117 status: code: 200 message: OK @@ -1125,7 +1125,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1137,7 +1137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:44:07 GMT + - Wed, 30 Jun 2021 01:38:20 GMT expires: - '-1' pragma: @@ -1154,7 +1154,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c0381598-e96b-4912-91d5-c40e077f1d83 + - 5ef2ae96-307a-4694-b454-72e0effdff90 status: code: 200 message: OK @@ -1174,7 +1174,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1186,7 +1186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:45:27 GMT + - Wed, 30 Jun 2021 01:39:41 GMT expires: - '-1' pragma: @@ -1203,7 +1203,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d2556927-adb6-4538-960a-9c31f6e75fb9 + - cb3acaa1-4ad7-41d5-9f63-2419123acd99 status: code: 200 message: OK @@ -1223,7 +1223,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1235,7 +1235,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:48:09 GMT + - Wed, 30 Jun 2021 01:42:22 GMT expires: - '-1' pragma: @@ -1252,7 +1252,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bf430d29-1010-49b9-9408-3a74ee0455a5 + - 6ebb9961-b275-46b4-92e6-d8e11fe21d8c status: code: 200 message: OK @@ -1272,7 +1272,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1284,7 +1284,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:49:49 GMT + - Wed, 30 Jun 2021 01:44:04 GMT expires: - '-1' pragma: @@ -1301,7 +1301,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 603cdff1-2a1e-4775-b5c7-eaf01c06f70e + - 602fa9fb-4fb1-4b2d-a52d-5a3dd94a2a5c status: code: 200 message: OK @@ -1321,7 +1321,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1333,7 +1333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:51:31 GMT + - Wed, 30 Jun 2021 01:45:44 GMT expires: - '-1' pragma: @@ -1350,7 +1350,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 65fd0a41-b0ad-4054-8072-b6647f141db2 + - 3063b122-269d-4a12-ac36-7fe158db36a8 status: code: 200 message: OK @@ -1370,7 +1370,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1382,7 +1382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:53:12 GMT + - Wed, 30 Jun 2021 01:47:26 GMT expires: - '-1' pragma: @@ -1399,7 +1399,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 07afa35c-e2c4-483e-b112-ed94ea3745e2 + - 072ca8a6-8d29-4e9a-83ad-c64e58d7bd86 status: code: 200 message: OK @@ -1419,7 +1419,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1431,7 +1431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:54:52 GMT + - Wed, 30 Jun 2021 01:49:07 GMT expires: - '-1' pragma: @@ -1448,7 +1448,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4aa38ef7-56ef-4358-8458-e430562740bc + - 4007fc13-637a-4cd6-b230-1ce4717b67ae status: code: 200 message: OK @@ -1468,7 +1468,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1480,7 +1480,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:56:33 GMT + - Wed, 30 Jun 2021 01:50:48 GMT expires: - '-1' pragma: @@ -1497,7 +1497,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5de29f98-8691-49f1-b874-0d7d34e43a3b + - c724c02e-fb15-45f4-8e35-a8b21a2e0d61 status: code: 200 message: OK @@ -1517,7 +1517,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1529,7 +1529,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:58:14 GMT + - Wed, 30 Jun 2021 01:52:29 GMT expires: - '-1' pragma: @@ -1546,7 +1546,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dac15431-af64-449d-97bb-03ed743a5716 + - d17eef1d-847b-4c40-b953-62755a0104b9 status: code: 200 message: OK @@ -1566,7 +1566,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/b5dd3c80-9ff0-4ba9-8f1c-5195dbddc077?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1578,7 +1578,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:59:54 GMT + - Wed, 30 Jun 2021 01:54:09 GMT expires: - '-1' pragma: @@ -1595,7 +1595,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5e0fc7a6-f4b1-45ae-985f-6a1904bbdb36 + - 57effe5a-10eb-40ec-89ae-e72a7a031c73 status: code: 200 message: OK @@ -1615,11 +1615,11 @@ interactions: User-Agent: - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/ipconfig1?api-version=2021-02-01 response: body: - string: "{\r\n \"name\": \"Default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default\",\r\n - \ \"etag\": \"W/\\\"b27cbcd8-6fd1-42da-9fe7-356b93f0c320\\\"\",\r\n \"type\": + string: "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"c622350b-64f8-41c1-9f84-19775a42753c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1\"\r\n @@ -1629,13 +1629,13 @@ interactions: cache-control: - no-cache content-length: - - '984' + - '988' content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:59:54 GMT + - Wed, 30 Jun 2021 01:54:09 GMT etag: - - W/"b27cbcd8-6fd1-42da-9fe7-356b93f0c320" + - W/"c622350b-64f8-41c1-9f84-19775a42753c" expires: - '-1' pragma: @@ -1652,7 +1652,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a65e61ce-dfcc-4849-add4-279c980af54c + - 27036a52-f1e7-4ecf-9cb0-75414e661b1c status: code: 200 message: OK @@ -1676,7 +1676,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"b27cbcd8-6fd1-42da-9fe7-356b93f0c320\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c622350b-64f8-41c1-9f84-19775a42753c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n @@ -1692,7 +1692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:59:57 GMT + - Wed, 30 Jun 2021 01:54:11 GMT expires: - '-1' pragma: @@ -1709,7 +1709,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 27807629-f360-40d4-b13c-61bb95f3576a + - a020d6fe-b6e9-42ae-bdf9-19b42660f5eb status: code: 200 message: OK @@ -1733,7 +1733,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"b27cbcd8-6fd1-42da-9fe7-356b93f0c320\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c622350b-64f8-41c1-9f84-19775a42753c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n @@ -1749,7 +1749,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:59:58 GMT + - Wed, 30 Jun 2021 01:54:12 GMT expires: - '-1' pragma: @@ -1766,7 +1766,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 919f3b3a-cac2-4e53-b011-019cdf4ba44f + - 56e78257-b374-4efb-98ac-eee5a838457e status: code: 200 message: OK @@ -1798,7 +1798,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"2ea39dfc-e080-4da0-a3cc-4ce1e67382fd\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e796c419-09cd-43ae-8473-6889ca333408\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n @@ -1808,7 +1808,7 @@ interactions: \"ExpressRoute\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/460bdea9-e44e-4f6d-beb3-f1e2e3bbe19e?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/76eb8d51-7471-4377-9bd0-261b13c3af71?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -1816,7 +1816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 07:59:59 GMT + - Wed, 30 Jun 2021 01:54:13 GMT expires: - '-1' pragma: @@ -1833,7 +1833,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7b395efe-7ecf-4427-a665-ce43aa021919 + - 8d19dbd7-5075-409c-b0b5-ab1de976f680 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1855,7 +1855,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/460bdea9-e44e-4f6d-beb3-f1e2e3bbe19e?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/76eb8d51-7471-4377-9bd0-261b13c3af71?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1867,7 +1867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:00:09 GMT + - Wed, 30 Jun 2021 01:54:24 GMT expires: - '-1' pragma: @@ -1884,7 +1884,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - aea0ee88-56eb-4628-8546-093b0f0d0364 + - c1e2a837-37b5-41c9-ad60-5ca86b159f46 status: code: 200 message: OK @@ -1904,7 +1904,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/460bdea9-e44e-4f6d-beb3-f1e2e3bbe19e?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/76eb8d51-7471-4377-9bd0-261b13c3af71?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1916,7 +1916,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:00:19 GMT + - Wed, 30 Jun 2021 01:54:34 GMT expires: - '-1' pragma: @@ -1933,7 +1933,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 457e9c36-ff98-4e13-a8e9-ec2703f01a02 + - 410aa318-4e91-44d6-a750-5192f5f66197 status: code: 200 message: OK @@ -1953,7 +1953,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/460bdea9-e44e-4f6d-beb3-f1e2e3bbe19e?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/76eb8d51-7471-4377-9bd0-261b13c3af71?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1965,7 +1965,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:00:41 GMT + - Wed, 30 Jun 2021 01:54:55 GMT expires: - '-1' pragma: @@ -1982,7 +1982,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c4aace1c-d08e-469d-a6db-550c1579afe3 + - 43f6a245-dd58-43a2-818b-3ca012d9955e status: code: 200 message: OK @@ -2002,7 +2002,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/460bdea9-e44e-4f6d-beb3-f1e2e3bbe19e?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/76eb8d51-7471-4377-9bd0-261b13c3af71?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2014,7 +2014,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:01:21 GMT + - Wed, 30 Jun 2021 01:55:36 GMT expires: - '-1' pragma: @@ -2031,7 +2031,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e0c9593a-36bd-4bb6-a682-10b3ead3ea3a + - 99e4c4c4-61bf-4433-91c2-763a44192ca7 status: code: 200 message: OK @@ -2051,7 +2051,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/460bdea9-e44e-4f6d-beb3-f1e2e3bbe19e?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/76eb8d51-7471-4377-9bd0-261b13c3af71?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2063,7 +2063,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:02:41 GMT + - Wed, 30 Jun 2021 01:56:56 GMT expires: - '-1' pragma: @@ -2080,7 +2080,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c4aec376-5da7-4a1e-adad-07200d14dffa + - b07e03df-a6f6-45e2-b714-a9617dcf99a9 status: code: 200 message: OK @@ -2104,7 +2104,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"8c45c051-0396-4ace-8ec1-a3bcbe2bfa11\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2de451dc-722b-4d4f-8bfc-d9f2dbc7fd43\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n @@ -2120,7 +2120,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:02:42 GMT + - Wed, 30 Jun 2021 01:56:57 GMT expires: - '-1' pragma: @@ -2137,7 +2137,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8ba6d086-ab8f-4266-aba7-04e4c582fbf7 + - 90f7cdd3-4bb8-4061-bcba-6be10f7d8d97 status: code: 200 message: OK @@ -2162,7 +2162,7 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"8c45c051-0396-4ace-8ec1-a3bcbe2bfa11\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2de451dc-722b-4d4f-8bfc-d9f2dbc7fd43\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": @@ -2179,7 +2179,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:02:43 GMT + - Wed, 30 Jun 2021 01:56:58 GMT expires: - '-1' pragma: @@ -2196,7 +2196,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6c4901ef-c0c5-41c8-bb5b-09b669e5b592 + - 5c61c8df-b5c1-43df-acaf-a3725b8c4ef1 status: code: 200 message: OK @@ -2220,7 +2220,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"8c45c051-0396-4ace-8ec1-a3bcbe2bfa11\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2de451dc-722b-4d4f-8bfc-d9f2dbc7fd43\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n @@ -2236,7 +2236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:02:44 GMT + - Wed, 30 Jun 2021 01:57:00 GMT expires: - '-1' pragma: @@ -2253,7 +2253,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7ee54741-e446-4e8d-b5af-6c36672422ff + - 0e7386e8-cb9b-41dd-a60c-ef2c07eb0230 status: code: 200 message: OK @@ -2281,13 +2281,13 @@ interactions: response: body: string: "{\r\n \"name\": \"peer1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1\",\r\n - \ \"etag\": \"W/\\\"e9b9864d-c89e-4f6d-b076-04dce4f48825\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"afb34255-7f9c-426f-9015-fdcba37a6e44\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Updating\",\r\n \"peerIp\": \"10.0.0.120\",\r\n \ \"peerAsn\": 11000\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/ed265586-d778-4d8c-88be-342869b51db0?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/cde67aa8-7196-48ec-8c1d-8ce85738a52d?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -2295,7 +2295,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:02:45 GMT + - Wed, 30 Jun 2021 01:57:01 GMT expires: - '-1' pragma: @@ -2308,9 +2308,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4c224f13-4406-43eb-a295-16f5410e96b7 + - c8fea283-4589-455e-95b3-9818d1ada5d8 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -2330,7 +2330,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/ed265586-d778-4d8c-88be-342869b51db0?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/cde67aa8-7196-48ec-8c1d-8ce85738a52d?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2342,7 +2342,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:02:55 GMT + - Wed, 30 Jun 2021 01:57:11 GMT expires: - '-1' pragma: @@ -2359,7 +2359,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6def7ebc-d135-4af5-b918-2ec6fc1b200c + - e8cbc104-181b-4acf-904b-4d0892e7f210 status: code: 200 message: OK @@ -2379,7 +2379,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/ed265586-d778-4d8c-88be-342869b51db0?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/cde67aa8-7196-48ec-8c1d-8ce85738a52d?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2391,7 +2391,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:03:05 GMT + - Wed, 30 Jun 2021 01:57:23 GMT expires: - '-1' pragma: @@ -2408,7 +2408,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fb4adf1d-b6c2-4800-9bf7-22a8ecb76501 + - 6a90a17f-2b18-4a25-9623-adf35c62545e status: code: 200 message: OK @@ -2428,7 +2428,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/ed265586-d778-4d8c-88be-342869b51db0?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/cde67aa8-7196-48ec-8c1d-8ce85738a52d?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2440,7 +2440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:03:26 GMT + - Wed, 30 Jun 2021 01:57:43 GMT expires: - '-1' pragma: @@ -2457,7 +2457,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a0ca1a23-950e-43c0-bad4-22331e11479c + - c183499f-cebe-4684-ad3f-7e1acc008ac7 status: code: 200 message: OK @@ -2477,7 +2477,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/ed265586-d778-4d8c-88be-342869b51db0?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/cde67aa8-7196-48ec-8c1d-8ce85738a52d?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2489,7 +2489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:04:07 GMT + - Wed, 30 Jun 2021 01:58:23 GMT expires: - '-1' pragma: @@ -2506,7 +2506,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ec6c1403-8c92-4e00-96c4-6e1798751e50 + - 96554999-7b1d-4cfc-bd64-b64be064feb9 status: code: 200 message: OK @@ -2530,7 +2530,7 @@ interactions: response: body: string: "{\r\n \"name\": \"peer1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1\",\r\n - \ \"etag\": \"W/\\\"3e10e0ab-7df5-47e2-911e-25105431b7fc\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"165dc3a6-36d1-4b4f-b7ec-2b6f1341c0ea\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"peerIp\": \"10.0.0.120\",\r\n \ \"peerAsn\": 11000\r\n }\r\n}" @@ -2542,9 +2542,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:04:07 GMT + - Wed, 30 Jun 2021 01:58:24 GMT etag: - - W/"3e10e0ab-7df5-47e2-911e-25105431b7fc" + - W/"165dc3a6-36d1-4b4f-b7ec-2b6f1341c0ea" expires: - '-1' pragma: @@ -2561,7 +2561,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dd615ac9-24cb-43f0-83c8-b335bb18766c + - 2f7cc33a-d153-419c-929f-c5a36140c7e2 status: code: 200 message: OK @@ -2586,7 +2586,7 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"peer1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1\",\r\n - \ \"etag\": \"W/\\\"3e10e0ab-7df5-47e2-911e-25105431b7fc\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"165dc3a6-36d1-4b4f-b7ec-2b6f1341c0ea\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peerIp\": \"10.0.0.120\",\r\n \"peerAsn\": 11000\r\n }\r\n }\r\n ]\r\n}" @@ -2598,7 +2598,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:04:08 GMT + - Wed, 30 Jun 2021 01:58:26 GMT expires: - '-1' pragma: @@ -2615,7 +2615,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1c9280a7-1710-480f-a0a8-6626af31e07c + - fe7e1c4d-496f-4389-8e28-cb3d34ec57e0 status: code: 200 message: OK @@ -2639,7 +2639,7 @@ interactions: response: body: string: "{\r\n \"name\": \"peer1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1\",\r\n - \ \"etag\": \"W/\\\"3e10e0ab-7df5-47e2-911e-25105431b7fc\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"165dc3a6-36d1-4b4f-b7ec-2b6f1341c0ea\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"peerIp\": \"10.0.0.120\",\r\n \ \"peerAsn\": 11000\r\n }\r\n}" @@ -2651,9 +2651,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:04:09 GMT + - Wed, 30 Jun 2021 01:58:27 GMT etag: - - W/"3e10e0ab-7df5-47e2-911e-25105431b7fc" + - W/"165dc3a6-36d1-4b4f-b7ec-2b6f1341c0ea" expires: - '-1' pragma: @@ -2670,7 +2670,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dd57ecb2-a67b-4f9c-a338-96336d9ad0ba + - ffcd437a-a379-4bc3-bb1e-8bf7bdc0a110 status: code: 200 message: OK @@ -2704,11 +2704,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:04:09 GMT + - Wed, 30 Jun 2021 01:58:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/e9b80330-0b3e-4136-9fa1-1077ff901612?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/bc3d167b-ae2d-494b-a8d5-948e345ddf7c?api-version=2021-02-01 pragma: - no-cache server: @@ -2719,7 +2719,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d48f80b3-679a-4d57-bb7f-4ce06014b556 + - e8214031-946f-4443-b6f2-68d975b7aaa2 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2741,7 +2741,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operationResults/e9b80330-0b3e-4136-9fa1-1077ff901612?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/bc3d167b-ae2d-494b-a8d5-948e345ddf7c?api-version=2021-02-01 response: body: string: "{\r\n \"RouteServiceRole_IN_0\": [],\r\n \"RouteServiceRole_IN_1\": @@ -2754,11 +2754,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:04:20 GMT + - Wed, 30 Jun 2021 01:58:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/e9b80330-0b3e-4136-9fa1-1077ff901612?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/bc3d167b-ae2d-494b-a8d5-948e345ddf7c?api-version=2021-02-01 pragma: - no-cache server: @@ -2773,7 +2773,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d48f80b3-679a-4d57-bb7f-4ce06014b556 + - e8214031-946f-4443-b6f2-68d975b7aaa2 status: code: 200 message: OK @@ -2807,11 +2807,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:04:21 GMT + - Wed, 30 Jun 2021 01:58:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/2eec4985-70a6-4bde-8f3d-a9eb143b5cd8?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/b210ad31-1c89-48d8-a1e1-36f69efc11d9?api-version=2021-02-01 pragma: - no-cache server: @@ -2822,7 +2822,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5bf85d25-cd42-4cfa-96c7-711a01187c22 + - 354ae96f-3b9a-46da-aa15-93319d78ee6b x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2844,7 +2844,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operationResults/2eec4985-70a6-4bde-8f3d-a9eb143b5cd8?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/b210ad31-1c89-48d8-a1e1-36f69efc11d9?api-version=2021-02-01 response: body: string: "{\r\n \"RouteServiceRole_IN_0\": [],\r\n \"RouteServiceRole_IN_1\": @@ -2857,11 +2857,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:04:31 GMT + - Wed, 30 Jun 2021 01:58:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/2eec4985-70a6-4bde-8f3d-a9eb143b5cd8?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/b210ad31-1c89-48d8-a1e1-36f69efc11d9?api-version=2021-02-01 pragma: - no-cache server: @@ -2876,7 +2876,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5bf85d25-cd42-4cfa-96c7-711a01187c22 + - 354ae96f-3b9a-46da-aa15-93319d78ee6b status: code: 200 message: OK @@ -2904,17 +2904,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/04f060e2-1e2b-484e-aceb-dcf98cd3d43d?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/4699825a-3cc0-42f9-ba2e-2b4b726ae663?api-version=2021-02-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 28 Jun 2021 08:04:32 GMT + - Wed, 30 Jun 2021 01:58:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/04f060e2-1e2b-484e-aceb-dcf98cd3d43d?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/4699825a-3cc0-42f9-ba2e-2b4b726ae663?api-version=2021-02-01 pragma: - no-cache server: @@ -2925,7 +2925,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0a4825e0-ba98-4631-881b-1c1ad1f456f0 + - d1ac48ed-5c66-4ade-b53e-f79fd85f86fe x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -2947,7 +2947,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/04f060e2-1e2b-484e-aceb-dcf98cd3d43d?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/4699825a-3cc0-42f9-ba2e-2b4b726ae663?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2959,7 +2959,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:04:44 GMT + - Wed, 30 Jun 2021 01:59:05 GMT expires: - '-1' pragma: @@ -2976,7 +2976,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8183e3ce-0cbb-41ce-933e-09165f49a002 + - afc14f7c-b5af-4e73-acd8-ae6f1ccc8b56 status: code: 200 message: OK @@ -2996,7 +2996,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/04f060e2-1e2b-484e-aceb-dcf98cd3d43d?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/4699825a-3cc0-42f9-ba2e-2b4b726ae663?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3008,7 +3008,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:04:54 GMT + - Wed, 30 Jun 2021 01:59:15 GMT expires: - '-1' pragma: @@ -3025,7 +3025,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fce9ff7b-c815-4d6a-9b36-1f0d80eedc69 + - 9710e6af-b61c-412f-b7c9-029b5034725a status: code: 200 message: OK @@ -3045,7 +3045,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/04f060e2-1e2b-484e-aceb-dcf98cd3d43d?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/4699825a-3cc0-42f9-ba2e-2b4b726ae663?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3057,7 +3057,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:05:15 GMT + - Wed, 30 Jun 2021 01:59:35 GMT expires: - '-1' pragma: @@ -3074,7 +3074,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 81b34cb1-6880-4698-bbea-73b00bb33300 + - 6d41635b-2e03-4c62-a6b7-92bf3825986a status: code: 200 message: OK @@ -3094,7 +3094,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/04f060e2-1e2b-484e-aceb-dcf98cd3d43d?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/4699825a-3cc0-42f9-ba2e-2b4b726ae663?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3106,7 +3106,63 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:05:55 GMT + - Wed, 30 Jun 2021 02:00:16 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: + - 811a36c7-b062-4ab9-a368-6033494ce103 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network routeserver delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -y + User-Agent: + - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations?api-version=2021-02-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"6abe7a4e-fb79-4a20-8c95-28a5b2831d72\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\"\r\n + \ }\r\n }\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1077' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 30 Jun 2021 02:00:17 GMT expires: - '-1' pragma: @@ -3123,7 +3179,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1097b48c-7837-4085-a005-4acf34971a24 + - d807a8a6-028c-44c6-b892-db851890a241 status: code: 200 message: OK @@ -3145,23 +3201,23 @@ interactions: User-Agent: - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/ipconfig1?api-version=2021-02-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 28 Jun 2021 08:05:57 GMT + - Wed, 30 Jun 2021 02:00:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 pragma: - no-cache server: @@ -3172,7 +3228,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 13512f57-80b8-4d06-bee5-798a87b66b0b + - 531b821e-a55d-45ef-8bac-f498987ef2a2 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -3194,7 +3250,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3206,7 +3262,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:06:07 GMT + - Wed, 30 Jun 2021 02:00:28 GMT expires: - '-1' pragma: @@ -3223,7 +3279,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fa0ccab8-f08d-4e0c-88c1-793d5fc2f445 + - f01d8fb8-0aa9-43e3-be97-98cceb1cc78d status: code: 200 message: OK @@ -3243,7 +3299,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3255,7 +3311,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:06:17 GMT + - Wed, 30 Jun 2021 02:00:39 GMT expires: - '-1' pragma: @@ -3272,7 +3328,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d0914881-fc7d-4bba-a291-07c62ac1acb7 + - f5c64cbd-3e1d-4167-8ce1-42ada8154413 status: code: 200 message: OK @@ -3292,7 +3348,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3304,7 +3360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:06:38 GMT + - Wed, 30 Jun 2021 02:01:00 GMT expires: - '-1' pragma: @@ -3321,7 +3377,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 73918579-56a8-4efa-898e-f354b543ba66 + - 8f48e7b5-1365-4f8d-9627-a5d950e8f52c status: code: 200 message: OK @@ -3341,7 +3397,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3353,7 +3409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:07:18 GMT + - Wed, 30 Jun 2021 02:01:40 GMT expires: - '-1' pragma: @@ -3370,7 +3426,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3115a66c-421a-4b05-9313-7561f156c106 + - d9e8096d-58df-4733-a522-6d12d35230a3 status: code: 200 message: OK @@ -3390,7 +3446,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3402,7 +3458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:08:39 GMT + - Wed, 30 Jun 2021 02:03:01 GMT expires: - '-1' pragma: @@ -3419,7 +3475,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e8d04480-a57f-4ce7-9cc3-270503d25743 + - 0ae824b1-41c3-4290-a534-7e1da71e5da3 status: code: 200 message: OK @@ -3439,7 +3495,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/d03f8a5c-c2db-4bbe-8153-3ec4216a28a9?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3451,7 +3507,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:11:19 GMT + - Wed, 30 Jun 2021 02:05:43 GMT expires: - '-1' pragma: @@ -3468,7 +3524,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f64d0d62-0f10-4864-b6f4-47df123705d6 + - 96d970fc-8ed8-4ef8-a01a-6193423b0188 status: code: 200 message: OK @@ -3498,17 +3554,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/79d97cc9-03ec-40b7-8e59-1ea2de543160?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/4da8515d-91d7-49b4-8076-b6793cf98e34?api-version=2021-02-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 28 Jun 2021 08:11:21 GMT + - Wed, 30 Jun 2021 02:05:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/79d97cc9-03ec-40b7-8e59-1ea2de543160?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/4da8515d-91d7-49b4-8076-b6793cf98e34?api-version=2021-02-01 pragma: - no-cache server: @@ -3519,7 +3575,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4a2fd7bf-ef0c-42f3-8829-5bd11d3cf499 + - 118db14d-576a-47d3-b141-598094be398e x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -3541,7 +3597,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/79d97cc9-03ec-40b7-8e59-1ea2de543160?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/4da8515d-91d7-49b4-8076-b6793cf98e34?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3553,7 +3609,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 28 Jun 2021 08:11:32 GMT + - Wed, 30 Jun 2021 02:05:56 GMT expires: - '-1' pragma: @@ -3570,7 +3626,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f14ee57c-f5ea-44c3-8864-0563674d8590 + - 8dc92d7a-afde-4041-a6d2-388bca6ab4b5 status: code: 200 message: OK From 7b90387e90a611641d3ce1318520b42fa1472cee Mon Sep 17 00:00:00 2001 From: kai ru <69238381+kairu-ms@users.noreply.github.com> Date: Thu, 1 Jul 2021 12:44:02 +0800 Subject: [PATCH 3/3] update recordings --- .../cli/command_modules/network/custom.py | 6 +- ...t_network_virtual_hub_router_scenario.yaml | 539 ++++++++++-------- 2 files changed, 297 insertions(+), 248 deletions(-) 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 284c098416a..d7306f646e4 100644 --- a/src/azure-cli/azure/cli/command_modules/network/custom.py +++ b/src/azure-cli/azure/cli/command_modules/network/custom.py @@ -6989,8 +6989,8 @@ def remove_vnet_gateway_nat_rule(cmd, resource_group_name, gateway_name, name, n def create_virtual_hub(cmd, client, resource_group_name, virtual_hub_name, + hosted_subnet, public_ip_address=None, - hosted_subnet=None, location=None, tags=None): from azure.core.exceptions import HttpResponseError @@ -7020,12 +7020,12 @@ def create_virtual_hub(cmd, client, vhub_ip_config_client = network_client_factory(cmd.cli_ctx).virtual_hub_ip_configuration try: vhub_ip_poller = vhub_ip_config_client.begin_create_or_update( - resource_group_name, virtual_hub_name, 'ipconfig1', ip_config) + resource_group_name, virtual_hub_name, 'Default', ip_config) LongRunningOperation(cmd.cli_ctx)(vhub_ip_poller) except Exception as ex: logger.error(ex) try: - vhub_ip_config_client.begin_delete(resource_group_name, virtual_hub_name, 'ipconfig1') + vhub_ip_config_client.begin_delete(resource_group_name, virtual_hub_name, 'Default') except HttpResponseError: pass client.begin_delete(resource_group_name, virtual_hub_name) diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_virtual_hub_router_scenario.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_virtual_hub_router_scenario.yaml index bd33872b7d3..7bb8322160e 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_virtual_hub_router_scenario.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_virtual_hub_router_scenario.yaml @@ -26,15 +26,15 @@ interactions: response: body: string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2\",\r\n - \ \"etag\": \"W/\\\"9b4faac7-0a84-488d-b104-5b1d94e92197\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"1a7367e6-c638-435f-9706-4876cafda486\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"e902590f-90ba-4839-b9b2-6ff81a3469c0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"eb082751-7eb5-4b40-aad9-c4644f94be15\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"RouteServerSubnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"9b4faac7-0a84-488d-b104-5b1d94e92197\\\"\",\r\n + \ \"etag\": \"W/\\\"1a7367e6-c638-435f-9706-4876cafda486\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -45,7 +45,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/0d819f34-c2d7-4270-becc-dcc1bc94cb5f?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/841c799b-9345-43e8-a760-ce205bde8768?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -53,7 +53,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:35:38 GMT + - Thu, 01 Jul 2021 03:27:25 GMT expires: - '-1' pragma: @@ -66,7 +66,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e83c4f29-9fde-4e91-9767-52e2dcfd2b36 + - ff405685-12f2-454c-b075-966328d8e71f x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -88,7 +88,56 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/0d819f34-c2d7-4270-becc-dcc1bc94cb5f?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/841c799b-9345-43e8-a760-ce205bde8768?api-version=2021-02-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, 01 Jul 2021 03:27:28 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: + - 1a067fed-8068-4ac0-9d82-c20fab897c40 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --subnet-name --address-prefix + User-Agent: + - AZURECLI/2.25.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/centraluseuap/operations/841c799b-9345-43e8-a760-ce205bde8768?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -100,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:35:41 GMT + - Thu, 01 Jul 2021 03:27:39 GMT expires: - '-1' pragma: @@ -117,7 +166,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ecb58c10-d4d2-4214-bcd5-b29c8161d180 + - 976ae976-07bf-42e4-a2f8-3fedebaa3f87 status: code: 200 message: OK @@ -141,15 +190,15 @@ interactions: response: body: string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2\",\r\n - \ \"etag\": \"W/\\\"f17beaf0-408c-4610-95ef-02902cc5a27b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"fb50231c-1866-4dcd-b3ad-e5582a41df69\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"e902590f-90ba-4839-b9b2-6ff81a3469c0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"eb082751-7eb5-4b40-aad9-c4644f94be15\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"RouteServerSubnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"f17beaf0-408c-4610-95ef-02902cc5a27b\\\"\",\r\n + \ \"etag\": \"W/\\\"fb50231c-1866-4dcd-b3ad-e5582a41df69\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -164,9 +213,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:35:42 GMT + - Thu, 01 Jul 2021 03:27:39 GMT etag: - - W/"f17beaf0-408c-4610-95ef-02902cc5a27b" + - W/"fb50231c-1866-4dcd-b3ad-e5582a41df69" expires: - '-1' pragma: @@ -183,7 +232,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4e26844c-9460-41df-a9b0-d289fa8da6aa + - 4056bb92-bd8a-4d4d-a797-2dd1df15bec7 status: code: 200 message: OK @@ -207,7 +256,7 @@ interactions: response: body: string: "{\r\n \"name\": \"RouteServerSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"f17beaf0-408c-4610-95ef-02902cc5a27b\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"fb50231c-1866-4dcd-b3ad-e5582a41df69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -220,9 +269,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:35:43 GMT + - Thu, 01 Jul 2021 03:27:41 GMT etag: - - W/"f17beaf0-408c-4610-95ef-02902cc5a27b" + - W/"fb50231c-1866-4dcd-b3ad-e5582a41df69" expires: - '-1' pragma: @@ -239,7 +288,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e888b51e-777a-45d6-b317-8eeb604ffcbf + - 67ae5da9-1213-4c15-af45-64798eb6d100 status: code: 200 message: OK @@ -270,14 +319,14 @@ interactions: response: body: string: "{\r\n \"name\": \"RouteServerSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"51c10b4a-01eb-485e-9766-1ff72c65d82b\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"7052e1bf-d0cf-40dd-a021-0f3fc2dbed86\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/1e4f27a2-bc1a-45b0-9ed7-fda7d6462cc2?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b9e48f25-fa42-4c72-b5ef-9df361a97984?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -285,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:35:44 GMT + - Thu, 01 Jul 2021 03:27:42 GMT expires: - '-1' pragma: @@ -302,7 +351,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 16989060-2122-4eb7-9bd7-309f6d7a3e3b + - 68160f65-b3df-4e66-b124-2a47891f2f36 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -324,7 +373,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/1e4f27a2-bc1a-45b0-9ed7-fda7d6462cc2?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b9e48f25-fa42-4c72-b5ef-9df361a97984?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -336,7 +385,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:36:14 GMT + - Thu, 01 Jul 2021 03:28:13 GMT expires: - '-1' pragma: @@ -353,7 +402,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2af3d75f-2484-4415-8c03-18ff31e41847 + - 42e93973-f1c9-43cc-8820-7297d2ef0402 status: code: 200 message: OK @@ -377,7 +426,7 @@ interactions: response: body: string: "{\r\n \"name\": \"RouteServerSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"51c10b4a-01eb-485e-9766-1ff72c65d82b\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"7052e1bf-d0cf-40dd-a021-0f3fc2dbed86\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -390,9 +439,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:36:14 GMT + - Thu, 01 Jul 2021 03:28:13 GMT etag: - - W/"51c10b4a-01eb-485e-9766-1ff72c65d82b" + - W/"7052e1bf-d0cf-40dd-a021-0f3fc2dbed86" expires: - '-1' pragma: @@ -409,7 +458,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8eca6660-abd7-45c7-8c0d-8b90a90c96ca + - bd11067c-50f5-4dfb-9dfa-c36043760bb9 status: code: 200 message: OK @@ -433,15 +482,15 @@ interactions: response: body: string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2\",\r\n - \ \"etag\": \"W/\\\"51c10b4a-01eb-485e-9766-1ff72c65d82b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7052e1bf-d0cf-40dd-a021-0f3fc2dbed86\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"e902590f-90ba-4839-b9b2-6ff81a3469c0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"eb082751-7eb5-4b40-aad9-c4644f94be15\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"RouteServerSubnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/RouteServerSubnet\",\r\n - \ \"etag\": \"W/\\\"51c10b4a-01eb-485e-9766-1ff72c65d82b\\\"\",\r\n + \ \"etag\": \"W/\\\"7052e1bf-d0cf-40dd-a021-0f3fc2dbed86\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -456,9 +505,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:36:16 GMT + - Thu, 01 Jul 2021 03:28:14 GMT etag: - - W/"51c10b4a-01eb-485e-9766-1ff72c65d82b" + - W/"7052e1bf-d0cf-40dd-a021-0f3fc2dbed86" expires: - '-1' pragma: @@ -475,7 +524,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ddb4275d-1f98-414b-9c3c-05d588de344a + - e210fe14-54e6-4472-bda6-1f6b9fe0b19f status: code: 200 message: OK @@ -498,7 +547,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_virtual_hub_router000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001","name":"cli_test_virtual_hub_router000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-06-30T01:35:18Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001","name":"cli_test_virtual_hub_router000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-07-01T03:27:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -507,7 +556,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:36:16 GMT + - Thu, 01 Jul 2021 03:28:15 GMT expires: - '-1' pragma: @@ -546,9 +595,9 @@ interactions: response: body: string: "{\r\n \"name\": \"vhrip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1\",\r\n - \ \"etag\": \"W/\\\"34e5a7b6-9df5-4c40-ad34-e1e3d1a2e9b1\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"13b46b0e-6aed-4750-9a20-55f4a4664e8f\\\"\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"3a7bc49e-2d58-42db-8836-eedb8cb61253\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"41337782-02ee-448e-9bf4-659602390fa5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n @@ -557,7 +606,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/635a1e38-752c-4073-a067-086720c65136?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/ca83f59f-30b6-4d51-8bc4-145b15a6b5b7?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -565,7 +614,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:36:20 GMT + - Thu, 01 Jul 2021 03:28:24 GMT expires: - '-1' pragma: @@ -578,7 +627,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 71350464-b480-4285-a3d0-1165438be912 + - 3b8ceb4c-4337-4d3e-85df-c2ec91d935c9 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -600,7 +649,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/635a1e38-752c-4073-a067-086720c65136?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/ca83f59f-30b6-4d51-8bc4-145b15a6b5b7?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -612,7 +661,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:36:21 GMT + - Thu, 01 Jul 2021 03:28:25 GMT expires: - '-1' pragma: @@ -629,7 +678,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 43cd714f-5433-42fe-ace0-aaa2b3df5cd8 + - ce608c19-543e-432b-b2d8-ab44b1310d70 status: code: 200 message: OK @@ -653,9 +702,9 @@ interactions: response: body: string: "{\r\n \"name\": \"vhrip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1\",\r\n - \ \"etag\": \"W/\\\"23a62c9b-bce0-481b-87fe-2dc69eab8441\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"c5a919b2-750a-4c71-92b6-287112a7e293\\\"\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"3a7bc49e-2d58-42db-8836-eedb8cb61253\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"41337782-02ee-448e-9bf4-659602390fa5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n @@ -668,9 +717,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:36:22 GMT + - Thu, 01 Jul 2021 03:28:25 GMT etag: - - W/"23a62c9b-bce0-481b-87fe-2dc69eab8441" + - W/"c5a919b2-750a-4c71-92b6-287112a7e293" expires: - '-1' pragma: @@ -687,7 +736,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1883e091-3b6a-496f-8dd8-7d7a19bf609c + - f8a8be46-e2f6-4f43-b9c6-fae14dd2a0bc status: code: 200 message: OK @@ -721,7 +770,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:36:22 GMT + - Thu, 01 Jul 2021 03:28:26 GMT expires: - '-1' pragma: @@ -759,7 +808,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"2f353685-2249-4aba-ab13-91bc5c8d0279\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"75ce19cc-b940-4323-8297-0af1658c43f4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": @@ -770,7 +819,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/961069dd-fa37-4a13-aab9-63ef47b4906d?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/8282dc30-035f-452f-8f0c-a29ed03d2842?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -778,7 +827,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:36:26 GMT + - Thu, 01 Jul 2021 03:28:34 GMT expires: - '-1' pragma: @@ -791,9 +840,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6bcd4bc0-c897-456e-b92a-59ab4ef26c74 + - 5dc6f221-8e42-4eec-936f-e5f670ef9a41 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -813,7 +862,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/961069dd-fa37-4a13-aab9-63ef47b4906d?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/8282dc30-035f-452f-8f0c-a29ed03d2842?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -825,7 +874,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:36:57 GMT + - Thu, 01 Jul 2021 03:29:06 GMT expires: - '-1' pragma: @@ -842,7 +891,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3aef06a4-6b80-40b5-8253-ca9d41036e98 + - 50c00db1-c210-4cfc-a1f3-c42561c10c8a status: code: 200 message: OK @@ -866,7 +915,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"2f353685-2249-4aba-ab13-91bc5c8d0279\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"75ce19cc-b940-4323-8297-0af1658c43f4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": @@ -881,7 +930,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:36:57 GMT + - Thu, 01 Jul 2021 03:29:06 GMT expires: - '-1' pragma: @@ -898,7 +947,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bf696bcc-1165-45c3-91e8-91a1b775957d + - 11054bc5-287b-47f1-96ef-f7bc4ab3be05 status: code: 200 message: OK @@ -923,11 +972,11 @@ interactions: User-Agent: - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/ipconfig1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default?api-version=2021-02-01 response: body: - string: "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/ipconfig1\",\r\n - \ \"etag\": \"W/\\\"e966f31c-5e7e-4f33-bdd4-197f4be269e1\\\"\",\r\n \"type\": + string: "{\r\n \"name\": \"Default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default\",\r\n + \ \"etag\": \"W/\\\"2fd09c1f-866c-4b74-a57b-e065e76a6269\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1\"\r\n @@ -935,15 +984,15 @@ interactions: \ }\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bf0870cf-2266-4d61-8893-c2ae79818f58?api-version=2021-02-01 cache-control: - no-cache content-length: - - '987' + - '983' content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:36:58 GMT + - Thu, 01 Jul 2021 03:29:07 GMT expires: - '-1' pragma: @@ -956,9 +1005,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 328c4ed6-0d1a-421a-aca9-54059d766526 + - 907d2dbd-4313-4cbd-8a68-f33c2c7fe639 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -978,7 +1027,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bf0870cf-2266-4d61-8893-c2ae79818f58?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -990,7 +1039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:37:09 GMT + - Thu, 01 Jul 2021 03:29:17 GMT expires: - '-1' pragma: @@ -1007,7 +1056,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 287308c3-def1-4b58-a28c-a960b4b1d2ee + - d58103ea-c2b2-4ea1-bd3e-d2ce2d5f2f06 status: code: 200 message: OK @@ -1027,7 +1076,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bf0870cf-2266-4d61-8893-c2ae79818f58?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1039,7 +1088,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:37:20 GMT + - Thu, 01 Jul 2021 03:29:28 GMT expires: - '-1' pragma: @@ -1056,7 +1105,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1c534bef-df98-48f2-b0c0-d36b1c9283d8 + - ab40bbbb-955e-4e6a-8ba1-c873675e15bb status: code: 200 message: OK @@ -1076,7 +1125,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bf0870cf-2266-4d61-8893-c2ae79818f58?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1088,7 +1137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:37:40 GMT + - Thu, 01 Jul 2021 03:29:48 GMT expires: - '-1' pragma: @@ -1105,7 +1154,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fbeaa542-3b28-4e81-86de-2aefb99e5117 + - d8aed662-9243-4ec3-8429-b40a01bfeb50 status: code: 200 message: OK @@ -1125,7 +1174,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bf0870cf-2266-4d61-8893-c2ae79818f58?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1137,7 +1186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:38:20 GMT + - Thu, 01 Jul 2021 03:30:28 GMT expires: - '-1' pragma: @@ -1154,7 +1203,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5ef2ae96-307a-4694-b454-72e0effdff90 + - 4058f88a-475b-4888-b48d-704217be4f8a status: code: 200 message: OK @@ -1174,7 +1223,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bf0870cf-2266-4d61-8893-c2ae79818f58?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1186,7 +1235,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:39:41 GMT + - Thu, 01 Jul 2021 03:31:49 GMT expires: - '-1' pragma: @@ -1203,7 +1252,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cb3acaa1-4ad7-41d5-9f63-2419123acd99 + - b2e17558-e2ac-4f24-b456-bbc2d5ece084 status: code: 200 message: OK @@ -1223,7 +1272,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bf0870cf-2266-4d61-8893-c2ae79818f58?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1235,7 +1284,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:42:22 GMT + - Thu, 01 Jul 2021 03:34:30 GMT expires: - '-1' pragma: @@ -1252,7 +1301,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6ebb9961-b275-46b4-92e6-d8e11fe21d8c + - a5b06110-b1d9-4cb6-a79f-d720578ee9b5 status: code: 200 message: OK @@ -1272,7 +1321,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bf0870cf-2266-4d61-8893-c2ae79818f58?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1284,7 +1333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:44:04 GMT + - Thu, 01 Jul 2021 03:36:11 GMT expires: - '-1' pragma: @@ -1301,7 +1350,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 602fa9fb-4fb1-4b2d-a52d-5a3dd94a2a5c + - 0e20082a-6d5a-4b25-b5e5-f37dabae5a71 status: code: 200 message: OK @@ -1321,7 +1370,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bf0870cf-2266-4d61-8893-c2ae79818f58?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1333,7 +1382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:45:44 GMT + - Thu, 01 Jul 2021 03:37:52 GMT expires: - '-1' pragma: @@ -1350,7 +1399,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3063b122-269d-4a12-ac36-7fe158db36a8 + - efae2e23-f5ac-41b4-b74e-bb70beacf210 status: code: 200 message: OK @@ -1370,7 +1419,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bf0870cf-2266-4d61-8893-c2ae79818f58?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1382,7 +1431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:47:26 GMT + - Thu, 01 Jul 2021 03:39:33 GMT expires: - '-1' pragma: @@ -1399,7 +1448,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 072ca8a6-8d29-4e9a-83ad-c64e58d7bd86 + - e1732941-33f8-4c44-bd5c-aad8ff5af164 status: code: 200 message: OK @@ -1419,7 +1468,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bf0870cf-2266-4d61-8893-c2ae79818f58?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1431,7 +1480,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:49:07 GMT + - Thu, 01 Jul 2021 03:41:13 GMT expires: - '-1' pragma: @@ -1448,7 +1497,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4007fc13-637a-4cd6-b230-1ce4717b67ae + - 9e7b1218-a3f5-4cb8-b549-9e963ed84f32 status: code: 200 message: OK @@ -1468,7 +1517,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bf0870cf-2266-4d61-8893-c2ae79818f58?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1480,7 +1529,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:50:48 GMT + - Thu, 01 Jul 2021 03:42:54 GMT expires: - '-1' pragma: @@ -1497,7 +1546,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c724c02e-fb15-45f4-8e35-a8b21a2e0d61 + - 8c9e2e49-7382-4d87-bee8-ea4263afc798 status: code: 200 message: OK @@ -1517,7 +1566,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bf0870cf-2266-4d61-8893-c2ae79818f58?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1529,7 +1578,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:52:29 GMT + - Thu, 01 Jul 2021 03:44:35 GMT expires: - '-1' pragma: @@ -1546,7 +1595,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d17eef1d-847b-4c40-b953-62755a0104b9 + - ac7aee1e-44a3-4eaa-bd91-43f98f17fd44 status: code: 200 message: OK @@ -1566,7 +1615,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/af762729-b6ac-4210-8e84-f637fd58f6a1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bf0870cf-2266-4d61-8893-c2ae79818f58?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1578,7 +1627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:54:09 GMT + - Thu, 01 Jul 2021 03:46:14 GMT expires: - '-1' pragma: @@ -1595,7 +1644,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 57effe5a-10eb-40ec-89ae-e72a7a031c73 + - 632d4e9d-5b21-49f1-a487-a74888facb0a status: code: 200 message: OK @@ -1615,11 +1664,11 @@ interactions: User-Agent: - AZURECLI/2.25.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/ipconfig1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default?api-version=2021-02-01 response: body: - string: "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/ipconfig1\",\r\n - \ \"etag\": \"W/\\\"c622350b-64f8-41c1-9f84-19775a42753c\\\"\",\r\n \"type\": + string: "{\r\n \"name\": \"Default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default\",\r\n + \ \"etag\": \"W/\\\"52f8b659-7a24-4684-a06e-a2fe7e7fc95c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1\"\r\n @@ -1629,13 +1678,13 @@ interactions: cache-control: - no-cache content-length: - - '988' + - '984' content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:54:09 GMT + - Thu, 01 Jul 2021 03:46:15 GMT etag: - - W/"c622350b-64f8-41c1-9f84-19775a42753c" + - W/"52f8b659-7a24-4684-a06e-a2fe7e7fc95c" expires: - '-1' pragma: @@ -1652,7 +1701,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 27036a52-f1e7-4ecf-9cb0-75414e661b1c + - 5ad0d83c-81ac-4719-bcf3-09076e780993 status: code: 200 message: OK @@ -1676,7 +1725,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"c622350b-64f8-41c1-9f84-19775a42753c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"52f8b659-7a24-4684-a06e-a2fe7e7fc95c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n @@ -1692,7 +1741,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:54:11 GMT + - Thu, 01 Jul 2021 03:46:17 GMT expires: - '-1' pragma: @@ -1709,7 +1758,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a020d6fe-b6e9-42ae-bdf9-19b42660f5eb + - c9b6eddf-05fc-4f80-aa29-58ce92cfe1b3 status: code: 200 message: OK @@ -1733,7 +1782,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"c622350b-64f8-41c1-9f84-19775a42753c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"52f8b659-7a24-4684-a06e-a2fe7e7fc95c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n @@ -1749,7 +1798,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:54:12 GMT + - Thu, 01 Jul 2021 03:46:19 GMT expires: - '-1' pragma: @@ -1766,7 +1815,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 56e78257-b374-4efb-98ac-eee5a838457e + - 22ba2d75-36a6-427f-8be2-15574436e4aa status: code: 200 message: OK @@ -1798,7 +1847,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"e796c419-09cd-43ae-8473-6889ca333408\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ed57cf48-356c-49c5-b0f1-2df6f93eb7e2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n @@ -1808,7 +1857,7 @@ interactions: \"ExpressRoute\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/76eb8d51-7471-4377-9bd0-261b13c3af71?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/092749d5-7e58-4955-acd6-d1a5d9246de5?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -1816,7 +1865,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:54:13 GMT + - Thu, 01 Jul 2021 03:46:20 GMT expires: - '-1' pragma: @@ -1833,7 +1882,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8d19dbd7-5075-409c-b0b5-ab1de976f680 + - c5ac187d-a8fc-4e06-bc28-70920bc019bf x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1855,7 +1904,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/76eb8d51-7471-4377-9bd0-261b13c3af71?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/092749d5-7e58-4955-acd6-d1a5d9246de5?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1867,7 +1916,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:54:24 GMT + - Thu, 01 Jul 2021 03:46:31 GMT expires: - '-1' pragma: @@ -1884,7 +1933,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c1e2a837-37b5-41c9-ad60-5ca86b159f46 + - 743e7b93-de9c-4653-a038-1ceca553d470 status: code: 200 message: OK @@ -1904,7 +1953,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/76eb8d51-7471-4377-9bd0-261b13c3af71?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/092749d5-7e58-4955-acd6-d1a5d9246de5?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1916,7 +1965,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:54:34 GMT + - Thu, 01 Jul 2021 03:46:41 GMT expires: - '-1' pragma: @@ -1933,7 +1982,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 410aa318-4e91-44d6-a750-5192f5f66197 + - a05c18af-93ff-41fb-8dc2-1d02707e61bc status: code: 200 message: OK @@ -1953,7 +2002,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/76eb8d51-7471-4377-9bd0-261b13c3af71?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/092749d5-7e58-4955-acd6-d1a5d9246de5?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1965,7 +2014,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:54:55 GMT + - Thu, 01 Jul 2021 03:47:01 GMT expires: - '-1' pragma: @@ -1982,7 +2031,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 43f6a245-dd58-43a2-818b-3ca012d9955e + - f5aeb82b-8507-478b-9ec8-76eabb5fd20e status: code: 200 message: OK @@ -2002,7 +2051,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/76eb8d51-7471-4377-9bd0-261b13c3af71?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/092749d5-7e58-4955-acd6-d1a5d9246de5?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2014,7 +2063,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:55:36 GMT + - Thu, 01 Jul 2021 03:47:42 GMT expires: - '-1' pragma: @@ -2031,7 +2080,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 99e4c4c4-61bf-4433-91c2-763a44192ca7 + - 5e98b9a5-cfd5-4aad-a6a1-9b14ce58e863 status: code: 200 message: OK @@ -2051,7 +2100,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/76eb8d51-7471-4377-9bd0-261b13c3af71?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/092749d5-7e58-4955-acd6-d1a5d9246de5?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2063,7 +2112,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:56:56 GMT + - Thu, 01 Jul 2021 03:49:03 GMT expires: - '-1' pragma: @@ -2080,7 +2129,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b07e03df-a6f6-45e2-b714-a9617dcf99a9 + - 2051b386-0a6a-4ab2-8866-94f331cfc933 status: code: 200 message: OK @@ -2104,7 +2153,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"2de451dc-722b-4d4f-8bfc-d9f2dbc7fd43\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"1cae4918-c217-4bf7-8ab1-d3bc1b79c7c3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n @@ -2120,7 +2169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:56:57 GMT + - Thu, 01 Jul 2021 03:49:03 GMT expires: - '-1' pragma: @@ -2137,7 +2186,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 90f7cdd3-4bb8-4061-bcba-6be10f7d8d97 + - 4f61af3a-8ca2-4ada-a248-d9953f9d1d4d status: code: 200 message: OK @@ -2162,7 +2211,7 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"2de451dc-722b-4d4f-8bfc-d9f2dbc7fd43\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"1cae4918-c217-4bf7-8ab1-d3bc1b79c7c3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": @@ -2179,7 +2228,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:56:58 GMT + - Thu, 01 Jul 2021 03:49:04 GMT expires: - '-1' pragma: @@ -2196,7 +2245,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5c61c8df-b5c1-43df-acaf-a3725b8c4ef1 + - d74c4aee-5496-49c7-bbfe-8e3b88b2ee06 status: code: 200 message: OK @@ -2220,7 +2269,7 @@ interactions: response: body: string: "{\r\n \"name\": \"vrouter2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2\",\r\n - \ \"etag\": \"W/\\\"2de451dc-722b-4d4f-8bfc-d9f2dbc7fd43\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"1cae4918-c217-4bf7-8ab1-d3bc1b79c7c3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n @@ -2236,7 +2285,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:57:00 GMT + - Thu, 01 Jul 2021 03:49:06 GMT expires: - '-1' pragma: @@ -2253,7 +2302,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0e7386e8-cb9b-41dd-a60c-ef2c07eb0230 + - 2db419b1-1f63-4034-8509-df590c9bf447 status: code: 200 message: OK @@ -2281,13 +2330,13 @@ interactions: response: body: string: "{\r\n \"name\": \"peer1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1\",\r\n - \ \"etag\": \"W/\\\"afb34255-7f9c-426f-9015-fdcba37a6e44\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"31e96d2f-c4ac-4a4e-a694-51f6943c0e71\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Updating\",\r\n \"peerIp\": \"10.0.0.120\",\r\n \ \"peerAsn\": 11000\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/cde67aa8-7196-48ec-8c1d-8ce85738a52d?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bbeb5fac-2713-4219-9dab-d36ba1220379?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -2295,7 +2344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:57:01 GMT + - Thu, 01 Jul 2021 03:49:07 GMT expires: - '-1' pragma: @@ -2308,9 +2357,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c8fea283-4589-455e-95b3-9818d1ada5d8 + - 34d5f2a4-7b0e-43f4-a5bf-2aab6d3b99f1 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -2330,7 +2379,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/cde67aa8-7196-48ec-8c1d-8ce85738a52d?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bbeb5fac-2713-4219-9dab-d36ba1220379?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2342,7 +2391,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:57:11 GMT + - Thu, 01 Jul 2021 03:49:17 GMT expires: - '-1' pragma: @@ -2359,7 +2408,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e8cbc104-181b-4acf-904b-4d0892e7f210 + - b71274ba-634e-410a-843b-c63a43f8a334 status: code: 200 message: OK @@ -2379,7 +2428,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/cde67aa8-7196-48ec-8c1d-8ce85738a52d?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bbeb5fac-2713-4219-9dab-d36ba1220379?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2391,7 +2440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:57:23 GMT + - Thu, 01 Jul 2021 03:49:27 GMT expires: - '-1' pragma: @@ -2408,7 +2457,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a90a17f-2b18-4a25-9623-adf35c62545e + - 8464528f-a89e-4c1f-a0c5-4d2ad3be6b7c status: code: 200 message: OK @@ -2428,7 +2477,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/cde67aa8-7196-48ec-8c1d-8ce85738a52d?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bbeb5fac-2713-4219-9dab-d36ba1220379?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2440,7 +2489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:57:43 GMT + - Thu, 01 Jul 2021 03:49:49 GMT expires: - '-1' pragma: @@ -2457,7 +2506,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c183499f-cebe-4684-ad3f-7e1acc008ac7 + - 8a680a50-00dc-4ab7-827a-1db0abceb66e status: code: 200 message: OK @@ -2477,7 +2526,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/cde67aa8-7196-48ec-8c1d-8ce85738a52d?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bbeb5fac-2713-4219-9dab-d36ba1220379?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2489,7 +2538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:58:23 GMT + - Thu, 01 Jul 2021 03:50:29 GMT expires: - '-1' pragma: @@ -2506,7 +2555,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 96554999-7b1d-4cfc-bd64-b64be064feb9 + - e322573d-00ed-4546-aecf-69263dfcbc84 status: code: 200 message: OK @@ -2530,7 +2579,7 @@ interactions: response: body: string: "{\r\n \"name\": \"peer1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1\",\r\n - \ \"etag\": \"W/\\\"165dc3a6-36d1-4b4f-b7ec-2b6f1341c0ea\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"03368935-a8de-4c13-806c-496568d4a05f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"peerIp\": \"10.0.0.120\",\r\n \ \"peerAsn\": 11000\r\n }\r\n}" @@ -2542,9 +2591,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:58:24 GMT + - Thu, 01 Jul 2021 03:50:29 GMT etag: - - W/"165dc3a6-36d1-4b4f-b7ec-2b6f1341c0ea" + - W/"03368935-a8de-4c13-806c-496568d4a05f" expires: - '-1' pragma: @@ -2561,7 +2610,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2f7cc33a-d153-419c-929f-c5a36140c7e2 + - 4bd889dc-7ce2-491e-bfb0-ca657313fbf4 status: code: 200 message: OK @@ -2586,7 +2635,7 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"peer1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1\",\r\n - \ \"etag\": \"W/\\\"165dc3a6-36d1-4b4f-b7ec-2b6f1341c0ea\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"03368935-a8de-4c13-806c-496568d4a05f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peerIp\": \"10.0.0.120\",\r\n \"peerAsn\": 11000\r\n }\r\n }\r\n ]\r\n}" @@ -2598,7 +2647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:58:26 GMT + - Thu, 01 Jul 2021 03:50:31 GMT expires: - '-1' pragma: @@ -2615,7 +2664,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fe7e1c4d-496f-4389-8e28-cb3d34ec57e0 + - 73515f4f-1421-4d80-974a-84c4f22191cd status: code: 200 message: OK @@ -2639,7 +2688,7 @@ interactions: response: body: string: "{\r\n \"name\": \"peer1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/bgpConnections/peer1\",\r\n - \ \"etag\": \"W/\\\"165dc3a6-36d1-4b4f-b7ec-2b6f1341c0ea\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"03368935-a8de-4c13-806c-496568d4a05f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"peerIp\": \"10.0.0.120\",\r\n \ \"peerAsn\": 11000\r\n }\r\n}" @@ -2651,9 +2700,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:58:27 GMT + - Thu, 01 Jul 2021 03:50:32 GMT etag: - - W/"165dc3a6-36d1-4b4f-b7ec-2b6f1341c0ea" + - W/"03368935-a8de-4c13-806c-496568d4a05f" expires: - '-1' pragma: @@ -2670,7 +2719,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ffcd437a-a379-4bc3-bb1e-8bf7bdc0a110 + - 2bdc77fc-17ae-4782-8bf1-98b386e5af6d status: code: 200 message: OK @@ -2704,11 +2753,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:58:29 GMT + - Thu, 01 Jul 2021 03:50:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/bc3d167b-ae2d-494b-a8d5-948e345ddf7c?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/02b25b08-c20e-4c7a-b6f1-9f1a1d61b156?api-version=2021-02-01 pragma: - no-cache server: @@ -2719,7 +2768,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e8214031-946f-4443-b6f2-68d975b7aaa2 + - 94b7dc57-938b-42ab-a296-8694a68b4695 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2741,7 +2790,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operationResults/bc3d167b-ae2d-494b-a8d5-948e345ddf7c?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/02b25b08-c20e-4c7a-b6f1-9f1a1d61b156?api-version=2021-02-01 response: body: string: "{\r\n \"RouteServiceRole_IN_0\": [],\r\n \"RouteServiceRole_IN_1\": @@ -2754,11 +2803,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:58:39 GMT + - Thu, 01 Jul 2021 03:50:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/bc3d167b-ae2d-494b-a8d5-948e345ddf7c?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/02b25b08-c20e-4c7a-b6f1-9f1a1d61b156?api-version=2021-02-01 pragma: - no-cache server: @@ -2773,7 +2822,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e8214031-946f-4443-b6f2-68d975b7aaa2 + - 94b7dc57-938b-42ab-a296-8694a68b4695 status: code: 200 message: OK @@ -2807,11 +2856,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:58:41 GMT + - Thu, 01 Jul 2021 03:50:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/b210ad31-1c89-48d8-a1e1-36f69efc11d9?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/51453fc6-1f55-4b63-861d-a774a069479c?api-version=2021-02-01 pragma: - no-cache server: @@ -2822,7 +2871,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 354ae96f-3b9a-46da-aa15-93319d78ee6b + - 1e7854d4-7499-4893-a044-ffd1e01733f6 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2844,7 +2893,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operationResults/b210ad31-1c89-48d8-a1e1-36f69efc11d9?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/51453fc6-1f55-4b63-861d-a774a069479c?api-version=2021-02-01 response: body: string: "{\r\n \"RouteServiceRole_IN_0\": [],\r\n \"RouteServiceRole_IN_1\": @@ -2857,11 +2906,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:58:51 GMT + - Thu, 01 Jul 2021 03:50:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/b210ad31-1c89-48d8-a1e1-36f69efc11d9?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/51453fc6-1f55-4b63-861d-a774a069479c?api-version=2021-02-01 pragma: - no-cache server: @@ -2876,7 +2925,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 354ae96f-3b9a-46da-aa15-93319d78ee6b + - 1e7854d4-7499-4893-a044-ffd1e01733f6 status: code: 200 message: OK @@ -2904,17 +2953,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/4699825a-3cc0-42f9-ba2e-2b4b726ae663?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/84dd5021-ddd0-4fe0-ba4d-2f2c9c4915cc?api-version=2021-02-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 30 Jun 2021 01:58:54 GMT + - Thu, 01 Jul 2021 03:50:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/4699825a-3cc0-42f9-ba2e-2b4b726ae663?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/84dd5021-ddd0-4fe0-ba4d-2f2c9c4915cc?api-version=2021-02-01 pragma: - no-cache server: @@ -2925,7 +2974,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d1ac48ed-5c66-4ade-b53e-f79fd85f86fe + - c8296ae3-1cf0-4832-882a-d494ad1e58e6 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -2947,7 +2996,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/4699825a-3cc0-42f9-ba2e-2b4b726ae663?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/84dd5021-ddd0-4fe0-ba4d-2f2c9c4915cc?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2959,7 +3008,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:59:05 GMT + - Thu, 01 Jul 2021 03:51:07 GMT expires: - '-1' pragma: @@ -2976,7 +3025,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - afc14f7c-b5af-4e73-acd8-ae6f1ccc8b56 + - 40e1f291-820d-49d1-b7a5-a31db8de176c status: code: 200 message: OK @@ -2996,7 +3045,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/4699825a-3cc0-42f9-ba2e-2b4b726ae663?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/84dd5021-ddd0-4fe0-ba4d-2f2c9c4915cc?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3008,7 +3057,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:59:15 GMT + - Thu, 01 Jul 2021 03:51:17 GMT expires: - '-1' pragma: @@ -3025,7 +3074,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9710e6af-b61c-412f-b7c9-029b5034725a + - b4c9edf0-bb58-4eb6-8c60-c7ac3dc2c023 status: code: 200 message: OK @@ -3045,7 +3094,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/4699825a-3cc0-42f9-ba2e-2b4b726ae663?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/84dd5021-ddd0-4fe0-ba4d-2f2c9c4915cc?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3057,7 +3106,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 01:59:35 GMT + - Thu, 01 Jul 2021 03:51:37 GMT expires: - '-1' pragma: @@ -3074,7 +3123,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6d41635b-2e03-4c62-a6b7-92bf3825986a + - 9468c412-a59e-42fb-9b51-4d8b92aed1c3 status: code: 200 message: OK @@ -3094,7 +3143,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/4699825a-3cc0-42f9-ba2e-2b4b726ae663?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/84dd5021-ddd0-4fe0-ba4d-2f2c9c4915cc?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3106,7 +3155,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 02:00:16 GMT + - Thu, 01 Jul 2021 03:52:18 GMT expires: - '-1' pragma: @@ -3123,7 +3172,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 811a36c7-b062-4ab9-a368-6033494ce103 + - 261b4cb7-1af5-492d-a029-61a97d7739ea status: code: 200 message: OK @@ -3146,9 +3195,9 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations?api-version=2021-02-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/ipconfig1\",\r\n - \ \"etag\": \"W/\\\"6abe7a4e-fb79-4a20-8c95-28a5b2831d72\\\"\",\r\n \"type\": + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Default\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default\",\r\n + \ \"etag\": \"W/\\\"0e73d090-2634-4da4-99c8-39b5a4f37686\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/publicIPAddresses/vhrip1\"\r\n @@ -3158,11 +3207,11 @@ interactions: cache-control: - no-cache content-length: - - '1077' + - '1073' content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 02:00:17 GMT + - Thu, 01 Jul 2021 03:52:19 GMT expires: - '-1' pragma: @@ -3179,7 +3228,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d807a8a6-028c-44c6-b892-db851890a241 + - ba88f9d0-e161-40c2-8a0a-e913eac7de11 status: code: 200 message: OK @@ -3201,23 +3250,23 @@ interactions: User-Agent: - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.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_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/ipconfig1?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_hub_router000001/providers/Microsoft.Network/virtualHubs/vrouter2/ipConfigurations/Default?api-version=2021-02-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/51f3d70c-0444-40b9-8093-64ab84d8952b?api-version=2021-02-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 30 Jun 2021 02:00:18 GMT + - Thu, 01 Jul 2021 03:52:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/51f3d70c-0444-40b9-8093-64ab84d8952b?api-version=2021-02-01 pragma: - no-cache server: @@ -3228,7 +3277,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 531b821e-a55d-45ef-8bac-f498987ef2a2 + - 54862677-5d10-4118-bc1e-c796da795f1f x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -3250,7 +3299,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/51f3d70c-0444-40b9-8093-64ab84d8952b?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3262,7 +3311,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 02:00:28 GMT + - Thu, 01 Jul 2021 03:52:31 GMT expires: - '-1' pragma: @@ -3279,7 +3328,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f01d8fb8-0aa9-43e3-be97-98cceb1cc78d + - bb70bc78-cfa3-49e4-bc5f-1ece8273139a status: code: 200 message: OK @@ -3299,7 +3348,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/51f3d70c-0444-40b9-8093-64ab84d8952b?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3311,7 +3360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 02:00:39 GMT + - Thu, 01 Jul 2021 03:52:41 GMT expires: - '-1' pragma: @@ -3328,7 +3377,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f5c64cbd-3e1d-4167-8ce1-42ada8154413 + - 48db056f-13ce-4b38-b94d-5a46add8ae08 status: code: 200 message: OK @@ -3348,7 +3397,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/51f3d70c-0444-40b9-8093-64ab84d8952b?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3360,7 +3409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 02:01:00 GMT + - Thu, 01 Jul 2021 03:53:01 GMT expires: - '-1' pragma: @@ -3377,7 +3426,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8f48e7b5-1365-4f8d-9627-a5d950e8f52c + - 26be7b11-4b01-4d9c-830f-d9221028dd55 status: code: 200 message: OK @@ -3397,7 +3446,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/51f3d70c-0444-40b9-8093-64ab84d8952b?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3409,7 +3458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 02:01:40 GMT + - Thu, 01 Jul 2021 03:53:41 GMT expires: - '-1' pragma: @@ -3426,7 +3475,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d9e8096d-58df-4733-a522-6d12d35230a3 + - 77817353-8b5f-481b-943d-0867b8316c00 status: code: 200 message: OK @@ -3446,7 +3495,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/51f3d70c-0444-40b9-8093-64ab84d8952b?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3458,7 +3507,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 02:03:01 GMT + - Thu, 01 Jul 2021 03:55:03 GMT expires: - '-1' pragma: @@ -3475,7 +3524,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0ae824b1-41c3-4290-a534-7e1da71e5da3 + - 23b007c8-c1a0-4244-902c-81eb8996d8c1 status: code: 200 message: OK @@ -3495,7 +3544,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/514a0e0f-9299-4eee-a0d7-9771eeb36ff6?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/51f3d70c-0444-40b9-8093-64ab84d8952b?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3507,7 +3556,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 02:05:43 GMT + - Thu, 01 Jul 2021 03:57:45 GMT expires: - '-1' pragma: @@ -3524,7 +3573,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 96d970fc-8ed8-4ef8-a01a-6193423b0188 + - 3a7a999a-9408-4462-b865-e29bc73c1324 status: code: 200 message: OK @@ -3554,17 +3603,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/4da8515d-91d7-49b4-8076-b6793cf98e34?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/2ee5d8aa-431e-4ec0-bbed-be22aaa86204?api-version=2021-02-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 30 Jun 2021 02:05:45 GMT + - Thu, 01 Jul 2021 03:57:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/4da8515d-91d7-49b4-8076-b6793cf98e34?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/2ee5d8aa-431e-4ec0-bbed-be22aaa86204?api-version=2021-02-01 pragma: - no-cache server: @@ -3575,7 +3624,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 118db14d-576a-47d3-b141-598094be398e + - 1ec05607-a897-466b-9459-ab8e926b5f0f x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -3597,7 +3646,7 @@ interactions: User-Agent: - AZURECLI/2.25.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/centraluseuap/operations/4da8515d-91d7-49b4-8076-b6793cf98e34?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/2ee5d8aa-431e-4ec0-bbed-be22aaa86204?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3609,7 +3658,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Jun 2021 02:05:56 GMT + - Thu, 01 Jul 2021 03:57:58 GMT expires: - '-1' pragma: @@ -3626,7 +3675,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8dc92d7a-afde-4041-a6d2-388bca6ab4b5 + - 3bee6800-daf8-4c20-82fd-65f6f1e4bb49 status: code: 200 message: OK