From abe3db9050bddc2f74f0f0bdb992d69a64c32384 Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Wed, 31 Mar 2021 14:40:34 +0800
Subject: [PATCH 01/19] 'az network vpn-connection list' add parameter
'--vnet-gateway-name' to support list VPN connections of a vnet-gateway
---
.../cli/command_modules/network/_help.py | 4 +-
.../cli/command_modules/network/_params.py | 3 +
.../cli/command_modules/network/commands.py | 2 +-
.../cli/command_modules/network/custom.py | 8 +
.../test_network_vpn_connection_ipsec.yaml | 905 ++++++++++--------
.../tests/latest/test_network_commands.py | 6 +
6 files changed, 513 insertions(+), 415 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 dc9e6b30409..dd57e38a42b 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_help.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_help.py
@@ -5813,10 +5813,12 @@
helps['network vpn-connection list'] = """
type: command
-short-summary: List all VPN connections in a resource group.
+short-summary: List all VPN connections.
examples:
- name: List all VPN connections in a resource group.
text: az network vpn-connection list -g MyResourceGroup
+ - name: List all VPN connections in a virtual network gateway.
+ text: az network vpn-connection list -g MyResourceGroup --vnet-gateway-name MyVnetGateway
"""
helps['network vpn-connection shared-key'] = """
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 5db8fe572cb..be1698df899 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_params.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_params.py
@@ -1965,6 +1965,9 @@ def load_arguments(self, _):
c.argument('use_policy_based_traffic_selectors', min_api='2017-03-01', help='Enable policy-based traffic selectors.', arg_type=get_three_state_flag())
c.argument('express_route_gateway_bypass', min_api='2018-07-01', arg_type=get_three_state_flag(), help='Bypass ExpressRoute gateway for data forwarding.')
+ with self.argument_context('network vpn-connection list') as c:
+ c.argument('virtual_network_gateway_name', options_list=['--vnet-gateway-name'], help='Name of the VNet gateway.', completer=get_resource_name_completion_list('Microsoft.Network/virtualNetworkGateways'))
+
with self.argument_context('network vpn-connection create') as c:
c.argument('connection_name', options_list=['--name', '-n'], metavar='NAME', help='Connection name.')
c.ignore('connection_type')
diff --git a/src/azure-cli/azure/cli/command_modules/network/commands.py b/src/azure-cli/azure/cli/command_modules/network/commands.py
index fc07b67cf95..b3d212538c0 100644
--- a/src/azure-cli/azure/cli/command_modules/network/commands.py
+++ b/src/azure-cli/azure/cli/command_modules/network/commands.py
@@ -1362,7 +1362,7 @@ def _make_singular(value):
g.custom_command('create', 'create_vpn_connection', transform=DeploymentOutputLongRunningOperation(self.cli_ctx), table_transformer=deployment_validate_table_format, validator=process_vpn_connection_create_namespace, exception_handler=handle_template_based_exception)
g.command('delete', 'begin_delete')
g.show_command('show', 'get', transform=transform_vpn_connection)
- g.command('list', 'list', transform=transform_vpn_connection_list)
+ g.custom_command('list', 'list_vpn_connections', transform=transform_vpn_connection_list)
g.generic_update_command('update', setter_name='begin_create_or_update', custom_func_name='update_vpn_connection')
with self.command_group('network vpn-connection shared-key', network_vpn_sdk) as g:
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 57402343463..23d496bc136 100644
--- a/src/azure-cli/azure/cli/command_modules/network/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/network/custom.py
@@ -6567,6 +6567,14 @@ def update_vpn_connection(cmd, instance, routing_weight=None, shared_key=None, t
gateway2_id['resource_group'], gateway2_id['name'])
return instance
+
+def list_vpn_connections(cmd, resource_group_name, virtual_network_gateway_name=None):
+ if virtual_network_gateway_name:
+ client = network_client_factory(cmd.cli_ctx).virtual_network_gateways
+ return client.list_connections(resource_group_name, virtual_network_gateway_name)
+ client = network_client_factory(cmd.cli_ctx).virtual_network_gateway_connections
+ return client.list(resource_group_name)
+
# endregion
diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_connection_ipsec.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_connection_ipsec.yaml
index 3fafb15626b..41c8ca70b01 100644
--- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_connection_ipsec.yaml
+++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_connection_ipsec.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n --address-prefix
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001","name":"cli_test_vpn_connection_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T07:25:55Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001","name":"cli_test_vpn_connection_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T05:53:47Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:25:58 GMT
+ - Wed, 31 Mar 2021 05:53:51 GMT
expires:
- '-1'
pragma:
@@ -63,16 +63,16 @@ interactions:
ParameterSetName:
- -g -n --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"d05b2e9c-8150-4304-b3e3-b24be1e8fcc6\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"8bd14ecf-ecdb-4c98-8ecd-540e5cca0d91\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"45c65348-0cd9-466e-ac94-0ce4fef0f057\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"8ebdcfbe-832b-46ba-a256-e8b16251cbc3\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.11.0.0/16\",\r\n \"10.12.0.0/16\"\r\n
\ ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n
\ },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n
@@ -81,7 +81,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c7295735-11f8-49b6-a100-8a9ff3aa572b?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bcd8ce9d-a841-477d-ba0c-3bc6f10e5c70?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -89,7 +89,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:04 GMT
+ - Wed, 31 Mar 2021 05:53:57 GMT
expires:
- '-1'
pragma:
@@ -102,9 +102,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 299efff4-53a9-4444-8132-1b6c2e9d3ae4
+ - 0b3f92ad-2b4b-42b9-bc73-f13e2085b783
x-ms-ratelimit-remaining-subscription-writes:
- - '1183'
+ - '1199'
status:
code: 201
message: Created
@@ -122,9 +122,9 @@ interactions:
ParameterSetName:
- -g -n --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c7295735-11f8-49b6-a100-8a9ff3aa572b?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bcd8ce9d-a841-477d-ba0c-3bc6f10e5c70?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -136,7 +136,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:07 GMT
+ - Wed, 31 Mar 2021 05:54:00 GMT
expires:
- '-1'
pragma:
@@ -153,7 +153,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 40379267-b570-4845-8d42-6395e0916105
+ - 17e1b5e7-d2c4-4dae-9f1f-d7fab1cc5727
status:
code: 200
message: OK
@@ -171,16 +171,16 @@ interactions:
ParameterSetName:
- -g -n --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"9686f990-d20f-44a9-b8a9-57965a04671c\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"a214c8c2-907e-4288-b4a5-eac2fb7dafc3\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"45c65348-0cd9-466e-ac94-0ce4fef0f057\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"8ebdcfbe-832b-46ba-a256-e8b16251cbc3\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.11.0.0/16\",\r\n \"10.12.0.0/16\"\r\n
\ ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n
\ },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n
@@ -193,9 +193,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:08 GMT
+ - Wed, 31 Mar 2021 05:54:01 GMT
etag:
- - W/"9686f990-d20f-44a9-b8a9-57965a04671c"
+ - W/"a214c8c2-907e-4288-b4a5-eac2fb7dafc3"
expires:
- '-1'
pragma:
@@ -212,7 +212,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - df9c0e45-6611-440a-8270-93a6bc197726
+ - c51229c2-b35a-4a3b-b3de-bb6c09db0cc9
status:
code: 200
message: OK
@@ -230,16 +230,16 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"9686f990-d20f-44a9-b8a9-57965a04671c\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"a214c8c2-907e-4288-b4a5-eac2fb7dafc3\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"45c65348-0cd9-466e-ac94-0ce4fef0f057\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"8ebdcfbe-832b-46ba-a256-e8b16251cbc3\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.11.0.0/16\",\r\n \"10.12.0.0/16\"\r\n
\ ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n
\ },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n
@@ -252,9 +252,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:07 GMT
+ - Wed, 31 Mar 2021 05:54:01 GMT
etag:
- - W/"9686f990-d20f-44a9-b8a9-57965a04671c"
+ - W/"a214c8c2-907e-4288-b4a5-eac2fb7dafc3"
expires:
- '-1'
pragma:
@@ -271,7 +271,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - bab6581a-152e-4c0e-afbe-f2531d50fca8
+ - 3fd407ef-1b02-481a-b157-30a83730c478
status:
code: 200
message: OK
@@ -297,21 +297,21 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"dce7fb76-81c7-45e7-ab74-880ced287719\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"4ef2cc96-5638-42d6-ab69-fb8a54c1ec4b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"45c65348-0cd9-466e-ac94-0ce4fef0f057\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"8ebdcfbe-832b-46ba-a256-e8b16251cbc3\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.11.0.0/16\",\r\n \"10.12.0.0/16\"\r\n
\ ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n
\ },\r\n \"subnets\": [\r\n {\r\n \"name\": \"FrontEnd\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/FrontEnd\",\r\n
- \ \"etag\": \"W/\\\"dce7fb76-81c7-45e7-ab74-880ced287719\\\"\",\r\n
+ \ \"etag\": \"W/\\\"4ef2cc96-5638-42d6-ab69-fb8a54c1ec4b\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"addressPrefix\": \"10.11.0.0/24\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -320,7 +320,7 @@ interactions:
false\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e79463c-7eca-4501-a6f3-b7e46f4bc02f?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8f5693d1-1674-46c5-92fc-d6322431a26c?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -328,7 +328,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:09 GMT
+ - Wed, 31 Mar 2021 05:54:02 GMT
expires:
- '-1'
pragma:
@@ -345,9 +345,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 39e3aaaa-aab5-48da-ab64-6f252a92ea57
+ - c4c38634-10fd-4814-ac44-a237c8846d25
x-ms-ratelimit-remaining-subscription-writes:
- - '1176'
+ - '1199'
status:
code: 200
message: OK
@@ -365,9 +365,9 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e79463c-7eca-4501-a6f3-b7e46f4bc02f?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8f5693d1-1674-46c5-92fc-d6322431a26c?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -379,7 +379,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:13 GMT
+ - Wed, 31 Mar 2021 05:54:06 GMT
expires:
- '-1'
pragma:
@@ -396,7 +396,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7f9d8716-2e95-4c72-82dc-3ad7ef7eed25
+ - 9507a78f-3f47-4a89-bc36-187ebc69ad7a
status:
code: 200
message: OK
@@ -414,21 +414,21 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"5f8c3200-af00-43ac-b09d-44f25b3021eb\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"c5e9475c-6a40-407d-aecd-27786fd5980e\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"45c65348-0cd9-466e-ac94-0ce4fef0f057\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"8ebdcfbe-832b-46ba-a256-e8b16251cbc3\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.11.0.0/16\",\r\n \"10.12.0.0/16\"\r\n
\ ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n
\ },\r\n \"subnets\": [\r\n {\r\n \"name\": \"FrontEnd\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/FrontEnd\",\r\n
- \ \"etag\": \"W/\\\"5f8c3200-af00-43ac-b09d-44f25b3021eb\\\"\",\r\n
+ \ \"etag\": \"W/\\\"c5e9475c-6a40-407d-aecd-27786fd5980e\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.11.0.0/24\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -443,9 +443,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:14 GMT
+ - Wed, 31 Mar 2021 05:54:06 GMT
etag:
- - W/"5f8c3200-af00-43ac-b09d-44f25b3021eb"
+ - W/"c5e9475c-6a40-407d-aecd-27786fd5980e"
expires:
- '-1'
pragma:
@@ -462,7 +462,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a04f7af5-3012-4ab2-9c7e-c426c85f03b8
+ - b70bf60e-b282-48a0-97a7-288795b14f7e
status:
code: 200
message: OK
@@ -480,21 +480,21 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"5f8c3200-af00-43ac-b09d-44f25b3021eb\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"c5e9475c-6a40-407d-aecd-27786fd5980e\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"45c65348-0cd9-466e-ac94-0ce4fef0f057\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"8ebdcfbe-832b-46ba-a256-e8b16251cbc3\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.11.0.0/16\",\r\n \"10.12.0.0/16\"\r\n
\ ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n
\ },\r\n \"subnets\": [\r\n {\r\n \"name\": \"FrontEnd\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/FrontEnd\",\r\n
- \ \"etag\": \"W/\\\"5f8c3200-af00-43ac-b09d-44f25b3021eb\\\"\",\r\n
+ \ \"etag\": \"W/\\\"c5e9475c-6a40-407d-aecd-27786fd5980e\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.11.0.0/24\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -509,9 +509,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:14 GMT
+ - Wed, 31 Mar 2021 05:54:07 GMT
etag:
- - W/"5f8c3200-af00-43ac-b09d-44f25b3021eb"
+ - W/"c5e9475c-6a40-407d-aecd-27786fd5980e"
expires:
- '-1'
pragma:
@@ -528,7 +528,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8cc07929-6e10-4041-a431-3002949edd13
+ - 6dd50c55-5c9f-4850-a524-f6d860c87cf7
status:
code: 200
message: OK
@@ -557,27 +557,27 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"203aa8f7-44ad-49bb-a70f-b408b92cfa3d\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"0e72a3d3-1dfa-4db4-91c8-cece527e3a21\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"45c65348-0cd9-466e-ac94-0ce4fef0f057\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"8ebdcfbe-832b-46ba-a256-e8b16251cbc3\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.11.0.0/16\",\r\n \"10.12.0.0/16\"\r\n
\ ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n
\ },\r\n \"subnets\": [\r\n {\r\n \"name\": \"FrontEnd\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/FrontEnd\",\r\n
- \ \"etag\": \"W/\\\"203aa8f7-44ad-49bb-a70f-b408b92cfa3d\\\"\",\r\n
+ \ \"etag\": \"W/\\\"0e72a3d3-1dfa-4db4-91c8-cece527e3a21\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"addressPrefix\": \"10.11.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
\ },\r\n {\r\n \"name\": \"BackEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/BackEnd\",\r\n
- \ \"etag\": \"W/\\\"203aa8f7-44ad-49bb-a70f-b408b92cfa3d\\\"\",\r\n
+ \ \"etag\": \"W/\\\"0e72a3d3-1dfa-4db4-91c8-cece527e3a21\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"addressPrefix\": \"10.12.0.0/24\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -586,7 +586,7 @@ interactions:
false\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/03841bb1-d81a-445d-9f8c-a6fb819ae084?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c92406b3-42cb-4e76-b4a9-62ac0290ba20?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -594,7 +594,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:15 GMT
+ - Wed, 31 Mar 2021 05:54:08 GMT
expires:
- '-1'
pragma:
@@ -611,9 +611,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - bf6b5195-d71b-4e9a-9aa2-4578f5135a23
+ - eb030d3d-25ee-4ebc-a545-e116b9cb29cb
x-ms-ratelimit-remaining-subscription-writes:
- - '1181'
+ - '1199'
status:
code: 200
message: OK
@@ -631,9 +631,9 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/03841bb1-d81a-445d-9f8c-a6fb819ae084?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c92406b3-42cb-4e76-b4a9-62ac0290ba20?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -645,7 +645,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:19 GMT
+ - Wed, 31 Mar 2021 05:54:11 GMT
expires:
- '-1'
pragma:
@@ -662,7 +662,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a4e37196-f1c0-4b00-8ed6-e36aeddb0640
+ - 8c813632-b6ad-4b78-b43d-0c0fc430de5a
status:
code: 200
message: OK
@@ -680,27 +680,27 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"96cbdc50-1633-49ab-99b0-f7d225e8b240\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"54c17ddc-846e-439f-90e6-ef166865ccf2\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"45c65348-0cd9-466e-ac94-0ce4fef0f057\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"8ebdcfbe-832b-46ba-a256-e8b16251cbc3\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.11.0.0/16\",\r\n \"10.12.0.0/16\"\r\n
\ ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n
\ },\r\n \"subnets\": [\r\n {\r\n \"name\": \"FrontEnd\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/FrontEnd\",\r\n
- \ \"etag\": \"W/\\\"96cbdc50-1633-49ab-99b0-f7d225e8b240\\\"\",\r\n
+ \ \"etag\": \"W/\\\"54c17ddc-846e-439f-90e6-ef166865ccf2\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.11.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
\ },\r\n {\r\n \"name\": \"BackEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/BackEnd\",\r\n
- \ \"etag\": \"W/\\\"96cbdc50-1633-49ab-99b0-f7d225e8b240\\\"\",\r\n
+ \ \"etag\": \"W/\\\"54c17ddc-846e-439f-90e6-ef166865ccf2\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.12.0.0/24\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -715,9 +715,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:19 GMT
+ - Wed, 31 Mar 2021 05:54:12 GMT
etag:
- - W/"96cbdc50-1633-49ab-99b0-f7d225e8b240"
+ - W/"54c17ddc-846e-439f-90e6-ef166865ccf2"
expires:
- '-1'
pragma:
@@ -734,7 +734,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 3c0e27f3-4c11-4e22-9902-2563ca047b4b
+ - 7692066d-8a4d-4cdd-8689-d0985e5d3520
status:
code: 200
message: OK
@@ -752,27 +752,27 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"96cbdc50-1633-49ab-99b0-f7d225e8b240\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"54c17ddc-846e-439f-90e6-ef166865ccf2\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"45c65348-0cd9-466e-ac94-0ce4fef0f057\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"8ebdcfbe-832b-46ba-a256-e8b16251cbc3\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.11.0.0/16\",\r\n \"10.12.0.0/16\"\r\n
\ ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n
\ },\r\n \"subnets\": [\r\n {\r\n \"name\": \"FrontEnd\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/FrontEnd\",\r\n
- \ \"etag\": \"W/\\\"96cbdc50-1633-49ab-99b0-f7d225e8b240\\\"\",\r\n
+ \ \"etag\": \"W/\\\"54c17ddc-846e-439f-90e6-ef166865ccf2\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.11.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
\ },\r\n {\r\n \"name\": \"BackEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/BackEnd\",\r\n
- \ \"etag\": \"W/\\\"96cbdc50-1633-49ab-99b0-f7d225e8b240\\\"\",\r\n
+ \ \"etag\": \"W/\\\"54c17ddc-846e-439f-90e6-ef166865ccf2\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.12.0.0/24\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -787,9 +787,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:20 GMT
+ - Wed, 31 Mar 2021 05:54:13 GMT
etag:
- - W/"96cbdc50-1633-49ab-99b0-f7d225e8b240"
+ - W/"54c17ddc-846e-439f-90e6-ef166865ccf2"
expires:
- '-1'
pragma:
@@ -806,7 +806,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9dee10f4-6d26-4c4b-b328-711fa6412a09
+ - c5da8cc2-fd99-43a0-b6e6-4099e0ee40af
status:
code: 200
message: OK
@@ -838,34 +838,34 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"cac121c2-9890-4e13-abfa-036cf68ee111\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"88eb48dc-bc6f-448d-bf22-b21b7ec0a0c6\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"45c65348-0cd9-466e-ac94-0ce4fef0f057\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"8ebdcfbe-832b-46ba-a256-e8b16251cbc3\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.11.0.0/16\",\r\n \"10.12.0.0/16\"\r\n
\ ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n
\ },\r\n \"subnets\": [\r\n {\r\n \"name\": \"FrontEnd\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/FrontEnd\",\r\n
- \ \"etag\": \"W/\\\"cac121c2-9890-4e13-abfa-036cf68ee111\\\"\",\r\n
+ \ \"etag\": \"W/\\\"88eb48dc-bc6f-448d-bf22-b21b7ec0a0c6\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"addressPrefix\": \"10.11.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
\ },\r\n {\r\n \"name\": \"BackEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/BackEnd\",\r\n
- \ \"etag\": \"W/\\\"cac121c2-9890-4e13-abfa-036cf68ee111\\\"\",\r\n
+ \ \"etag\": \"W/\\\"88eb48dc-bc6f-448d-bf22-b21b7ec0a0c6\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"addressPrefix\": \"10.12.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
\ },\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"cac121c2-9890-4e13-abfa-036cf68ee111\\\"\",\r\n
+ \ \"etag\": \"W/\\\"88eb48dc-bc6f-448d-bf22-b21b7ec0a0c6\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"addressPrefix\": \"10.12.255.0/27\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -874,7 +874,7 @@ interactions:
false\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/24513c77-e301-4259-9a5b-397419db6a99?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bc586090-e5cf-418b-ac42-f44042817f60?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -882,7 +882,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:21 GMT
+ - Wed, 31 Mar 2021 05:54:14 GMT
expires:
- '-1'
pragma:
@@ -899,9 +899,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 0dcc0560-3d52-413f-8e86-b5692bba8333
+ - 857b9493-d9db-4d3b-a53a-cba0c7f1f447
x-ms-ratelimit-remaining-subscription-writes:
- - '1182'
+ - '1199'
status:
code: 200
message: OK
@@ -919,9 +919,9 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/24513c77-e301-4259-9a5b-397419db6a99?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bc586090-e5cf-418b-ac42-f44042817f60?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -933,7 +933,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:25 GMT
+ - Wed, 31 Mar 2021 05:54:17 GMT
expires:
- '-1'
pragma:
@@ -950,7 +950,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 2fe42e25-72fd-4fcc-9565-49fa18018e3e
+ - d55209ad-81be-4830-965d-32a6dd46e0fa
status:
code: 200
message: OK
@@ -968,34 +968,34 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"32b43b69-259d-47ca-9f4e-65501489faa1\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"30e57953-84d8-4eec-8491-d905f71fbb8e\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"45c65348-0cd9-466e-ac94-0ce4fef0f057\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"8ebdcfbe-832b-46ba-a256-e8b16251cbc3\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.11.0.0/16\",\r\n \"10.12.0.0/16\"\r\n
\ ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n
\ },\r\n \"subnets\": [\r\n {\r\n \"name\": \"FrontEnd\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/FrontEnd\",\r\n
- \ \"etag\": \"W/\\\"32b43b69-259d-47ca-9f4e-65501489faa1\\\"\",\r\n
+ \ \"etag\": \"W/\\\"30e57953-84d8-4eec-8491-d905f71fbb8e\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.11.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
\ },\r\n {\r\n \"name\": \"BackEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/BackEnd\",\r\n
- \ \"etag\": \"W/\\\"32b43b69-259d-47ca-9f4e-65501489faa1\\\"\",\r\n
+ \ \"etag\": \"W/\\\"30e57953-84d8-4eec-8491-d905f71fbb8e\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.12.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
\ },\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"32b43b69-259d-47ca-9f4e-65501489faa1\\\"\",\r\n
+ \ \"etag\": \"W/\\\"30e57953-84d8-4eec-8491-d905f71fbb8e\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.12.255.0/27\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -1010,9 +1010,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:25 GMT
+ - Wed, 31 Mar 2021 05:54:18 GMT
etag:
- - W/"32b43b69-259d-47ca-9f4e-65501489faa1"
+ - W/"30e57953-84d8-4eec-8491-d905f71fbb8e"
expires:
- '-1'
pragma:
@@ -1029,7 +1029,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f2d4ca2c-140f-4a27-b2b7-78182d02cc4f
+ - 68afabe6-3e55-476f-9f00-dcf07efc2c85
status:
code: 200
message: OK
@@ -1047,15 +1047,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001","name":"cli_test_vpn_connection_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T07:25:55Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001","name":"cli_test_vpn_connection_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T05:53:47Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1064,7 +1064,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:26 GMT
+ - Wed, 31 Mar 2021 05:54:19 GMT
expires:
- '-1'
pragma:
@@ -1097,15 +1097,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\r\n
- \ \"etag\": \"W/\\\"0f75afba-69a1-4ba0-b7b2-e49a30bffa83\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"86624f06-141a-42e9-9617-201da7edec46\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"f5e84d76-a939-4ba1-8869-330331edf581\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"4f4ae4ee-802e-4e09-8fe3-e7761db1a7b4\",\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
@@ -1114,7 +1114,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c5954d03-fe5e-4fa9-8b4e-c97aa07bcfaa?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a43c91fa-7d78-4c8e-b720-fa566db6f752?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -1122,7 +1122,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:29 GMT
+ - Wed, 31 Mar 2021 05:54:25 GMT
expires:
- '-1'
pragma:
@@ -1135,9 +1135,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a8c13fd7-f097-4baa-80b4-ec68a405f9d6
+ - 2e7c360b-3ca0-46bc-a0f1-89aec724b987
x-ms-ratelimit-remaining-subscription-writes:
- - '1181'
+ - '1199'
status:
code: 201
message: Created
@@ -1155,9 +1155,9 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c5954d03-fe5e-4fa9-8b4e-c97aa07bcfaa?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a43c91fa-7d78-4c8e-b720-fa566db6f752?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -1169,7 +1169,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:31 GMT
+ - Wed, 31 Mar 2021 05:54:26 GMT
expires:
- '-1'
pragma:
@@ -1186,7 +1186,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 139b9593-4abf-48a6-a545-98e76b0b12c4
+ - 945e97ef-e8bb-4f49-baa5-1f7c885fe72e
status:
code: 200
message: OK
@@ -1204,15 +1204,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\r\n
- \ \"etag\": \"W/\\\"92a55a18-8047-4656-91e5-53372fe1e2e4\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"8610e1d0-735b-40ea-b6e5-9d08d8a547c2\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"f5e84d76-a939-4ba1-8869-330331edf581\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"4f4ae4ee-802e-4e09-8fe3-e7761db1a7b4\",\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
@@ -1225,9 +1225,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:31 GMT
+ - Wed, 31 Mar 2021 05:54:27 GMT
etag:
- - W/"92a55a18-8047-4656-91e5-53372fe1e2e4"
+ - W/"8610e1d0-735b-40ea-b6e5-9d08d8a547c2"
expires:
- '-1'
pragma:
@@ -1244,7 +1244,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9c1affff-c3df-434a-bd71-b7147ead60d6
+ - bda67c8f-211e-4bd5-9146-0c647b48234e
status:
code: 200
message: OK
@@ -1262,15 +1262,15 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001","name":"cli_test_vpn_connection_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T07:25:55Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001","name":"cli_test_vpn_connection_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T05:53:47Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1279,7 +1279,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:31 GMT
+ - Wed, 31 Mar 2021 05:54:27 GMT
expires:
- '-1'
pragma:
@@ -1315,20 +1315,20 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"e7488cd1-fe2f-4ac7-a8e2-50235daa4da0\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"16e4c62b-5461-4087-8775-8feb0a3721fc\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"6d724675-9dd8-49b4-ba3c-34d291ff5a5c\",\r\n \"packetCaptureDiagnosticState\":
+ \"7ed0059f-5fa5-4c6c-bbff-d877ae7b7195\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"e7488cd1-fe2f-4ac7-a8e2-50235daa4da0\\\"\",\r\n
+ \ \"etag\": \"W/\\\"16e4c62b-5461-4087-8775-8feb0a3721fc\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1352,7 +1352,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -1360,7 +1360,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:36 GMT
+ - Wed, 31 Mar 2021 05:54:33 GMT
expires:
- '-1'
pragma:
@@ -1373,9 +1373,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - d09c22ed-ef23-4095-bcf4-12600b3def75
+ - df2b661f-adc1-40aa-8bb3-11fe1af0a32b
x-ms-ratelimit-remaining-subscription-writes:
- - '1180'
+ - '1199'
status:
code: 201
message: Created
@@ -1393,9 +1393,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1407,7 +1407,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:47 GMT
+ - Wed, 31 Mar 2021 05:54:44 GMT
expires:
- '-1'
pragma:
@@ -1424,7 +1424,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a0ae8d9c-f94a-499f-94ea-07732ab62e2b
+ - 759977de-fb6a-4e26-8ee1-6ceae88522a4
status:
code: 200
message: OK
@@ -1442,9 +1442,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1456,7 +1456,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:57 GMT
+ - Wed, 31 Mar 2021 05:54:54 GMT
expires:
- '-1'
pragma:
@@ -1473,7 +1473,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 25e78493-ff04-4a7e-93d1-4b73b75a757a
+ - 4250c066-d7c8-403d-acac-19b9143a7100
status:
code: 200
message: OK
@@ -1491,9 +1491,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1505,7 +1505,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:27:18 GMT
+ - Wed, 31 Mar 2021 05:55:14 GMT
expires:
- '-1'
pragma:
@@ -1522,7 +1522,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b2ace7a2-f00e-4f9b-b477-7c556ae90c63
+ - ee43f1bd-a124-4250-9f0f-0e35b9cb232e
status:
code: 200
message: OK
@@ -1540,9 +1540,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1554,7 +1554,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:27:39 GMT
+ - Wed, 31 Mar 2021 05:55:35 GMT
expires:
- '-1'
pragma:
@@ -1571,7 +1571,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7cb03929-7b2c-407a-8ada-a9af9a36ceae
+ - ff5958de-da66-4db0-a41b-bca6f874c835
status:
code: 200
message: OK
@@ -1589,9 +1589,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1603,7 +1603,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:28:20 GMT
+ - Wed, 31 Mar 2021 05:56:15 GMT
expires:
- '-1'
pragma:
@@ -1620,7 +1620,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 30ced504-d29d-4d30-83ba-a67c285897c8
+ - 93b5e8c9-fa53-479a-b121-95ee35afe0c5
status:
code: 200
message: OK
@@ -1638,9 +1638,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1652,7 +1652,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:29:01 GMT
+ - Wed, 31 Mar 2021 05:56:55 GMT
expires:
- '-1'
pragma:
@@ -1669,7 +1669,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 659fffa9-9a69-4207-9a8b-270cd5904609
+ - 630080d2-98e3-4c70-862c-c6456affba5c
status:
code: 200
message: OK
@@ -1687,9 +1687,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1701,7 +1701,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:30:21 GMT
+ - Wed, 31 Mar 2021 05:58:16 GMT
expires:
- '-1'
pragma:
@@ -1718,7 +1718,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a79f70c0-dc62-40c9-b2d2-415d8bb4fbb5
+ - e3aae456-0aa8-4c69-8a2f-afdbe3cb30e8
status:
code: 200
message: OK
@@ -1736,9 +1736,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1750,7 +1750,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:33:01 GMT
+ - Wed, 31 Mar 2021 06:00:56 GMT
expires:
- '-1'
pragma:
@@ -1767,7 +1767,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7db67458-187f-4d62-a9b4-706bf93d04b8
+ - 78282152-f1df-4a78-8a0f-1c21040b28bf
status:
code: 200
message: OK
@@ -1785,9 +1785,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1799,7 +1799,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:34:42 GMT
+ - Wed, 31 Mar 2021 06:02:37 GMT
expires:
- '-1'
pragma:
@@ -1816,7 +1816,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 52c16a87-4643-4a6f-b9ce-c241f2230a15
+ - 8693e67d-5243-49ea-bb38-c406074da96b
status:
code: 200
message: OK
@@ -1834,9 +1834,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1848,7 +1848,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:36:23 GMT
+ - Wed, 31 Mar 2021 06:04:17 GMT
expires:
- '-1'
pragma:
@@ -1865,7 +1865,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a8f04c4b-f79f-4c39-bcae-38b7f2623877
+ - 79658102-21f4-4710-95a9-17c05e5bb49a
status:
code: 200
message: OK
@@ -1883,9 +1883,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1897,7 +1897,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:38:03 GMT
+ - Wed, 31 Mar 2021 06:05:57 GMT
expires:
- '-1'
pragma:
@@ -1914,7 +1914,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a66faa94-eb4a-4c22-8502-861b387a4cd9
+ - a901ffc9-c7f5-4067-935a-8a8b9c99de1d
status:
code: 200
message: OK
@@ -1932,9 +1932,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1946,7 +1946,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:39:43 GMT
+ - Wed, 31 Mar 2021 06:07:37 GMT
expires:
- '-1'
pragma:
@@ -1963,7 +1963,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9465a4b4-e738-4320-86db-a74b2e299e4f
+ - a34f2811-3524-432e-b79f-d5695019f71a
status:
code: 200
message: OK
@@ -1981,9 +1981,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1995,7 +1995,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:41:23 GMT
+ - Wed, 31 Mar 2021 06:09:17 GMT
expires:
- '-1'
pragma:
@@ -2012,7 +2012,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f3373dd1-59c4-48bd-9e7a-d7eb3f5bb7db
+ - 2eeb4f0c-c87d-491a-94b9-579a39b19c8a
status:
code: 200
message: OK
@@ -2030,9 +2030,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2044,7 +2044,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:43:04 GMT
+ - Wed, 31 Mar 2021 06:10:59 GMT
expires:
- '-1'
pragma:
@@ -2061,7 +2061,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 32cc58ae-b6ba-42ec-9584-778a5cc948ed
+ - ad661acd-fdee-4832-8ead-26d405ea978c
status:
code: 200
message: OK
@@ -2079,9 +2079,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2093,7 +2093,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:44:44 GMT
+ - Wed, 31 Mar 2021 06:12:39 GMT
expires:
- '-1'
pragma:
@@ -2110,7 +2110,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e5460746-4636-468a-b3f3-7a2eff825f4a
+ - a95dce62-b819-4d41-971e-317fb3c47069
status:
code: 200
message: OK
@@ -2128,9 +2128,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2142,7 +2142,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:46:25 GMT
+ - Wed, 31 Mar 2021 06:14:19 GMT
expires:
- '-1'
pragma:
@@ -2159,7 +2159,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f8c579b3-941a-4427-b306-255ad5672f89
+ - 1f37a142-6f8b-4a57-99a6-6e90e0c7c25d
status:
code: 200
message: OK
@@ -2177,9 +2177,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2191,7 +2191,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:48:05 GMT
+ - Wed, 31 Mar 2021 06:16:00 GMT
expires:
- '-1'
pragma:
@@ -2208,7 +2208,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1018a042-01ee-4606-9480-509d9d71cc93
+ - 9d33f494-ed95-4c0d-a314-e5451c3525ef
status:
code: 200
message: OK
@@ -2226,9 +2226,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2240,7 +2240,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:49:46 GMT
+ - Wed, 31 Mar 2021 06:17:40 GMT
expires:
- '-1'
pragma:
@@ -2257,7 +2257,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 383f038e-d03a-466c-9938-da2148edad33
+ - c5096aaa-f792-4f05-adaf-a8131191fb8e
status:
code: 200
message: OK
@@ -2275,9 +2275,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2289,7 +2289,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:51:26 GMT
+ - Wed, 31 Mar 2021 06:19:21 GMT
expires:
- '-1'
pragma:
@@ -2306,7 +2306,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - fb7201bb-ca61-479b-8695-972d087eab18
+ - ce0d4e17-47f5-463a-afe8-98e55a75f35c
status:
code: 200
message: OK
@@ -2324,9 +2324,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2338,7 +2338,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:53:06 GMT
+ - Wed, 31 Mar 2021 06:21:01 GMT
expires:
- '-1'
pragma:
@@ -2355,7 +2355,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7a951979-9bcb-4a18-a4bc-258c5a750f44
+ - 8e75d465-7331-4ed7-ae8e-38431e29ecbf
status:
code: 200
message: OK
@@ -2373,9 +2373,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2387,7 +2387,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:54:46 GMT
+ - Wed, 31 Mar 2021 06:22:41 GMT
expires:
- '-1'
pragma:
@@ -2404,7 +2404,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 3d8f2125-cfc0-4314-9661-0c178c3af91d
+ - fdfa44f5-b97b-4134-b172-03b37e404b56
status:
code: 200
message: OK
@@ -2422,9 +2422,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2436,7 +2436,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:56:27 GMT
+ - Wed, 31 Mar 2021 06:24:21 GMT
expires:
- '-1'
pragma:
@@ -2453,7 +2453,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 99d37973-dc83-48bb-9f94-5c7534076635
+ - fd6236a0-5e97-4944-8c54-b60496fd195f
status:
code: 200
message: OK
@@ -2471,9 +2471,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2485,7 +2485,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:58:07 GMT
+ - Wed, 31 Mar 2021 06:26:02 GMT
expires:
- '-1'
pragma:
@@ -2502,7 +2502,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c96c3926-cb98-40f2-9855-07bce055fa06
+ - b81563fe-f0d8-4fac-99af-94e444e658d4
status:
code: 200
message: OK
@@ -2520,9 +2520,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2534,7 +2534,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:59:48 GMT
+ - Wed, 31 Mar 2021 06:27:42 GMT
expires:
- '-1'
pragma:
@@ -2551,7 +2551,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c26bad29-cbbe-40be-80ff-0fa13f58fdb3
+ - 16984063-f9a4-4c41-8cda-4c484ab2a42a
status:
code: 200
message: OK
@@ -2569,58 +2569,9 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
- response:
- body:
- string: "{\r\n \"status\": \"InProgress\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '30'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 04 Mar 2021 08:01:29 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:
- - e85b5e2d-8445-44eb-af06-b30eeeffd1d0
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - network vnet-gateway create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --public-ip-address --vnet --sku
- User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7c679dd1-73c2-4591-b3e9-8a584d9ab03e?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b791fd33-6aee-422e-a134-14081ee123b1?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -2632,7 +2583,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:03:09 GMT
+ - Wed, 31 Mar 2021 06:29:23 GMT
expires:
- '-1'
pragma:
@@ -2649,7 +2600,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 4b42ed05-f503-462c-ac85-a3b96ac496f0
+ - cf17a981-8ffe-4dd8-8f76-bec9bd35e7c6
status:
code: 200
message: OK
@@ -2667,20 +2618,20 @@ interactions:
ParameterSetName:
- -g -n --public-ip-address --vnet --sku
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"ccc77938-b100-400a-84d0-e72860b0cd49\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"bdbdc804-d6d9-4e30-92f8-b850a8401d44\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"6d724675-9dd8-49b4-ba3c-34d291ff5a5c\",\r\n \"packetCaptureDiagnosticState\":
+ \"7ed0059f-5fa5-4c6c-bbff-d877ae7b7195\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ccc77938-b100-400a-84d0-e72860b0cd49\\\"\",\r\n
+ \ \"etag\": \"W/\\\"bdbdc804-d6d9-4e30-92f8-b850a8401d44\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2696,17 +2647,17 @@ interactions:
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.12.255.30\"\r\n
\ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"13.91.17.201\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"40.83.138.248\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2689'
+ - '2690'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:03:10 GMT
+ - Wed, 31 Mar 2021 06:29:23 GMT
expires:
- '-1'
pragma:
@@ -2723,7 +2674,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8e483a6a-c4e0-4a52-be92-a33e03aa39ac
+ - 8582b43b-b1cf-41fa-8a1b-47c2a1abb256
status:
code: 200
message: OK
@@ -2741,15 +2692,15 @@ interactions:
ParameterSetName:
- -g -n --gateway-ip-address --local-address-prefixes
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001","name":"cli_test_vpn_connection_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T07:25:55Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001","name":"cli_test_vpn_connection_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T05:53:47Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -2758,7 +2709,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:03:11 GMT
+ - Wed, 31 Mar 2021 06:29:23 GMT
expires:
- '-1'
pragma:
@@ -2791,23 +2742,23 @@ interactions:
ParameterSetName:
- -g -n --gateway-ip-address --local-address-prefixes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"lgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\",\r\n
- \ \"etag\": \"W/\\\"edb18cc1-2d04-4721-b085-b04318c97394\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"62e41bb1-42bd-45fe-b18f-ada20b9e817f\\\"\",\r\n \"type\":
\"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"61980925-0b05-4dbc-85cf-e23491e6a597\",\r\n \"localNetworkAddressSpace\":
+ \"6743633c-8877-49e4-83d5-291d7dc2d8c0\",\r\n \"localNetworkAddressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.61.0.0/16\",\r\n \"10.62.0.0/16\"\r\n
\ ]\r\n },\r\n \"gatewayIpAddress\": \"131.107.72.22\"\r\n }\r\n}"
headers:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/de15dba4-8c1b-4a15-8d0a-e2e57f3a1385?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1de6bf74-f9bf-412d-a74e-ffcfaebfa345?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -2815,7 +2766,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:03:17 GMT
+ - Wed, 31 Mar 2021 06:29:30 GMT
expires:
- '-1'
pragma:
@@ -2828,9 +2779,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f05fe10d-c400-4d25-a2c2-7a6160dcab5a
+ - 2064c22b-99bf-43f1-a3ea-c588bd31163c
x-ms-ratelimit-remaining-subscription-writes:
- - '1178'
+ - '1198'
status:
code: 201
message: Created
@@ -2848,9 +2799,9 @@ interactions:
ParameterSetName:
- -g -n --gateway-ip-address --local-address-prefixes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/de15dba4-8c1b-4a15-8d0a-e2e57f3a1385?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1de6bf74-f9bf-412d-a74e-ffcfaebfa345?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -2862,7 +2813,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:03:27 GMT
+ - Wed, 31 Mar 2021 06:29:40 GMT
expires:
- '-1'
pragma:
@@ -2879,7 +2830,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 82e86ae1-1726-4a4a-99cf-5873373d1dd8
+ - 6d43f94b-45d9-455d-9d4c-fd4966cf79c0
status:
code: 200
message: OK
@@ -2897,16 +2848,16 @@ interactions:
ParameterSetName:
- -g -n --gateway-ip-address --local-address-prefixes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"lgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\",\r\n
- \ \"etag\": \"W/\\\"0673aa27-addd-4635-9fae-a110633d2747\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"96516afb-d837-45c5-a85a-bb0bb900e71c\\\"\",\r\n \"type\":
\"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"61980925-0b05-4dbc-85cf-e23491e6a597\",\r\n \"localNetworkAddressSpace\":
+ \"6743633c-8877-49e4-83d5-291d7dc2d8c0\",\r\n \"localNetworkAddressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.61.0.0/16\",\r\n \"10.62.0.0/16\"\r\n
\ ]\r\n },\r\n \"gatewayIpAddress\": \"131.107.72.22\"\r\n }\r\n}"
headers:
@@ -2917,9 +2868,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:03:28 GMT
+ - Wed, 31 Mar 2021 06:29:40 GMT
etag:
- - W/"0673aa27-addd-4635-9fae-a110633d2747"
+ - W/"96516afb-d837-45c5-a85a-bb0bb900e71c"
expires:
- '-1'
pragma:
@@ -2936,7 +2887,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7ba4092f-06a6-4dff-939f-f828ca95dd27
+ - 218653d1-988b-4b0c-ac59-dece1fa3cdca
status:
code: 200
message: OK
@@ -2954,15 +2905,15 @@ interactions:
ParameterSetName:
- -g -n --vnet-gateway1 --local-gateway2 --shared-key
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001","name":"cli_test_vpn_connection_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T07:25:55Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001","name":"cli_test_vpn_connection_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T05:53:47Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -2971,7 +2922,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:03:29 GMT
+ - Wed, 31 Mar 2021 06:29:41 GMT
expires:
- '-1'
pragma:
@@ -3013,26 +2964,26 @@ interactions:
ParameterSetName:
- -g -n --vnet-gateway1 --local-gateway2 --shared-key
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_7MpRLnv1XvPdBYdhuzJ3KIRJOdBdbfrA","name":"vpn_connection_deploy_7MpRLnv1XvPdBYdhuzJ3KIRJOdBdbfrA","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14475296333956763162","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-03-04T08:03:34.458326Z","duration":"PT2.9255654S","correlationId":"10f4527f-4426-4e13-84e5-b1a51e1e3a94","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_UQ4qbcSclysjxZXjMqhVfb41Q7MoJdbH","name":"vpn_connection_deploy_UQ4qbcSclysjxZXjMqhVfb41Q7MoJdbH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16619308338402589928","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-03-31T06:29:47.0931677Z","duration":"PT2.1704775S","correlationId":"f0e30d58-a9d3-4cbe-bf90-fc4ddb2a36f2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_7MpRLnv1XvPdBYdhuzJ3KIRJOdBdbfrA/operationStatuses/08585867618739448538?api-version=2020-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_UQ4qbcSclysjxZXjMqhVfb41Q7MoJdbH/operationStatuses/08585844347005549219?api-version=2020-10-01
cache-control:
- no-cache
content-length:
- - '770'
+ - '771'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:03:35 GMT
+ - Wed, 31 Mar 2021 06:29:48 GMT
expires:
- '-1'
pragma:
@@ -3042,7 +2993,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1184'
+ - '1199'
status:
code: 201
message: Created
@@ -3060,10 +3011,10 @@ interactions:
ParameterSetName:
- -g -n --vnet-gateway1 --local-gateway2 --shared-key
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585867618739448538?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585844347005549219?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -3075,7 +3026,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:04:05 GMT
+ - Wed, 31 Mar 2021 06:30:19 GMT
expires:
- '-1'
pragma:
@@ -3103,10 +3054,10 @@ interactions:
ParameterSetName:
- -g -n --vnet-gateway1 --local-gateway2 --shared-key
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585867618739448538?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585844347005549219?api-version=2020-10-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -3118,7 +3069,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:04:36 GMT
+ - Wed, 31 Mar 2021 06:30:49 GMT
expires:
- '-1'
pragma:
@@ -3146,13 +3097,13 @@ interactions:
ParameterSetName:
- -g -n --vnet-gateway1 --local-gateway2 --shared-key
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_7MpRLnv1XvPdBYdhuzJ3KIRJOdBdbfrA","name":"vpn_connection_deploy_7MpRLnv1XvPdBYdhuzJ3KIRJOdBdbfrA","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14475296333956763162","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-03-04T08:04:15.1139507Z","duration":"PT43.5811901S","correlationId":"10f4527f-4426-4e13-84e5-b1a51e1e3a94","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"6b987140-5819-4fe1-9128-07abaeb49001","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1"},"localNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1"},"connectionType":"IPsec","connectionProtocol":"IKEv2","routingWeight":10,"sharedKey":"AzureA1b2C3","enableBgp":false,"useLocalAzureIpAddress":false,"trafficSelectorPolicies":[],"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0,"dpdTimeoutSeconds":0,"connectionMode":"Default"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_UQ4qbcSclysjxZXjMqhVfb41Q7MoJdbH","name":"vpn_connection_deploy_UQ4qbcSclysjxZXjMqhVfb41Q7MoJdbH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16619308338402589928","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-03-31T06:30:29.0388956Z","duration":"PT44.1162054S","correlationId":"f0e30d58-a9d3-4cbe-bf90-fc4ddb2a36f2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"475f7fa7-34cd-4a96-97d1-69a3efc7e1ce","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1"},"localNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1"},"connectionType":"IPsec","connectionProtocol":"IKEv2","routingWeight":10,"sharedKey":"AzureA1b2C3","enableBgp":false,"useLocalAzureIpAddress":false,"trafficSelectorPolicies":[],"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0,"dpdTimeoutSeconds":0,"connectionMode":"Default"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1"}]}}'
headers:
cache-control:
- no-cache
@@ -3161,7 +3112,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:04:36 GMT
+ - Wed, 31 Mar 2021 06:30:49 GMT
expires:
- '-1'
pragma:
@@ -3175,6 +3126,134 @@ interactions:
status:
code: 200
message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vpn-connection list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"conn1\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\",\r\n
+ \ \"etag\": \"W/\\\"6ea2a8e2-4ee1-4e74-910d-5937c63187cd\\\"\",\r\n \"type\":
+ \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"475f7fa7-34cd-4a96-97d1-69a3efc7e1ce\",\r\n
+ \ \"packetCaptureDiagnosticState\": \"None\",\r\n \"virtualNetworkGateway1\":
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\r\n
+ \ },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\r\n
+ \ },\r\n \"connectionType\": \"IPsec\",\r\n \"connectionProtocol\":
+ \"IKEv2\",\r\n \"routingWeight\": 10,\r\n \"enableBgp\": false,\r\n
+ \ \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\":
+ false,\r\n \"ipsecPolicies\": [],\r\n \"trafficSelectorPolicies\":
+ [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\":
+ 0,\r\n \"expressRouteGatewayBypass\": false,\r\n \"dpdTimeoutSeconds\":
+ 0,\r\n \"connectionMode\": \"Default\"\r\n }\r\n }\r\n ]\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1630'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 31 Mar 2021 06:30:51 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:
+ - b2cc4d85-f902-45d4-8b9f-dfc89db3bbaf
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vpn-connection list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --vnet-gateway-name
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/connections?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"conn1\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\",\r\n
+ \ \"etag\": \"W/\\\"6ea2a8e2-4ee1-4e74-910d-5937c63187cd\\\"\",\r\n \"type\":
+ \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"475f7fa7-34cd-4a96-97d1-69a3efc7e1ce\",\r\n
+ \ \"packetCaptureDiagnosticState\": \"None\",\r\n \"virtualNetworkGateway1\":
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\r\n
+ \ },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\r\n
+ \ },\r\n \"connectionType\": \"IPsec\",\r\n \"connectionProtocol\":
+ \"IKEv2\",\r\n \"routingWeight\": 10,\r\n \"enableBgp\": false,\r\n
+ \ \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\":
+ false,\r\n \"ipsecPolicies\": [],\r\n \"trafficSelectorPolicies\":
+ [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\":
+ 0,\r\n \"expressRouteGatewayBypass\": false,\r\n \"dpdTimeoutSeconds\":
+ 0,\r\n \"connectionMode\": \"Default\"\r\n }\r\n }\r\n ]\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1630'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 31 Mar 2021 06:30:52 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:
+ - 0133fa7d-9a8f-40eb-a841-e9e99b07f88f
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -3190,16 +3269,16 @@ interactions:
- -g --connection-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\",\r\n
- \ \"etag\": \"W/\\\"57871bb7-eb40-42a9-bc0e-13e1e41d785a\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"6ea2a8e2-4ee1-4e74-910d-5937c63187cd\\\"\",\r\n \"type\":
\"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"tags\":
{},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"6b987140-5819-4fe1-9128-07abaeb49001\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"resourceGuid\": \"475f7fa7-34cd-4a96-97d1-69a3efc7e1ce\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\r\n
\ },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\r\n
\ },\r\n \"connectionType\": \"IPsec\",\r\n \"connectionProtocol\":
@@ -3218,7 +3297,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:04:38 GMT
+ - Wed, 31 Mar 2021 06:30:53 GMT
expires:
- '-1'
pragma:
@@ -3235,7 +3314,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - ce189a8b-4212-4aec-bfb8-8fce049d36d6
+ - 2c2b0828-e68a-49d1-926c-86d2794dac7d
status:
code: 200
message: OK
@@ -3268,16 +3347,16 @@ interactions:
- -g --connection-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\",\r\n
- \ \"etag\": \"W/\\\"0d6af55d-90bf-42c4-8ce3-023153072eeb\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"a3a42f6f-3ca6-4e8d-9857-b42c16f1ff62\\\"\",\r\n \"type\":
\"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"tags\":
{},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"6b987140-5819-4fe1-9128-07abaeb49001\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"resourceGuid\": \"475f7fa7-34cd-4a96-97d1-69a3efc7e1ce\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\r\n
\ },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\r\n
\ },\r\n \"connectionType\": \"IPsec\",\r\n \"connectionProtocol\":
@@ -3293,7 +3372,7 @@ interactions:
\ \"dpdTimeoutSeconds\": 0,\r\n \"connectionMode\": \"Default\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ce894220-38e8-434e-9782-ab2bac284c1c?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/38d671d9-b061-46bc-909e-41ec71553cee?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -3301,7 +3380,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:04:41 GMT
+ - Wed, 31 Mar 2021 06:30:56 GMT
expires:
- '-1'
pragma:
@@ -3318,9 +3397,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 715e50f1-3282-47c5-ad3e-b68a06feada8
+ - 5b9e46a0-458a-423d-88f3-80d62e076756
x-ms-ratelimit-remaining-subscription-writes:
- - '1182'
+ - '1199'
status:
code: 200
message: OK
@@ -3339,9 +3418,9 @@ interactions:
- -g --connection-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ce894220-38e8-434e-9782-ab2bac284c1c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/38d671d9-b061-46bc-909e-41ec71553cee?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -3353,7 +3432,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:04:51 GMT
+ - Wed, 31 Mar 2021 06:31:06 GMT
expires:
- '-1'
pragma:
@@ -3370,7 +3449,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 929dc4d0-3373-42c0-8f12-092b5867aee9
+ - a598aaed-6a7d-40ec-8c6a-cd4941a6e79b
status:
code: 200
message: OK
@@ -3389,9 +3468,9 @@ interactions:
- -g --connection-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ce894220-38e8-434e-9782-ab2bac284c1c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/38d671d9-b061-46bc-909e-41ec71553cee?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -3403,7 +3482,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:05:11 GMT
+ - Wed, 31 Mar 2021 06:31:26 GMT
expires:
- '-1'
pragma:
@@ -3420,7 +3499,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f225a3f8-1a96-47f0-ad40-6f8109ea97fe
+ - 0ba71147-1d94-4a85-8caa-7401d7f513bb
status:
code: 200
message: OK
@@ -3439,9 +3518,9 @@ interactions:
- -g --connection-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ce894220-38e8-434e-9782-ab2bac284c1c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/38d671d9-b061-46bc-909e-41ec71553cee?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -3453,7 +3532,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:05:52 GMT
+ - Wed, 31 Mar 2021 06:32:06 GMT
expires:
- '-1'
pragma:
@@ -3470,7 +3549,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8eba1b57-6d34-48af-9977-86942f1ec56f
+ - b451e8bf-bdd3-4192-94bc-04c95a519ca6
status:
code: 200
message: OK
@@ -3489,9 +3568,9 @@ interactions:
- -g --connection-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ce894220-38e8-434e-9782-ab2bac284c1c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/38d671d9-b061-46bc-909e-41ec71553cee?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -3503,7 +3582,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:07:12 GMT
+ - Wed, 31 Mar 2021 06:33:27 GMT
expires:
- '-1'
pragma:
@@ -3520,7 +3599,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 30ce531a-a0af-48e1-abde-6e7368179aba
+ - d3d3a7d9-e246-4ba9-958e-61a8836aa9a3
status:
code: 200
message: OK
@@ -3539,16 +3618,16 @@ interactions:
- -g --connection-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\",\r\n
- \ \"etag\": \"W/\\\"bbf363f3-b257-4967-88b8-5a2529c5ea39\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"791d0bb9-6602-41c3-b466-e3c79468db55\\\"\",\r\n \"type\":
\"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"tags\":
{},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"6b987140-5819-4fe1-9128-07abaeb49001\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"resourceGuid\": \"475f7fa7-34cd-4a96-97d1-69a3efc7e1ce\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\r\n
\ },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\r\n
\ },\r\n \"connectionType\": \"IPsec\",\r\n \"connectionProtocol\":
@@ -3559,7 +3638,7 @@ interactions:
\"GCMAES256\",\r\n \"ipsecIntegrity\": \"GCMAES256\",\r\n \"ikeEncryption\":
\"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\":
\"DHGroup24\",\r\n \"pfsGroup\": \"PFS24\"\r\n }\r\n ],\r\n
- \ \"trafficSelectorPolicies\": [],\r\n \"connectionStatus\": \"NotConnected\",\r\n
+ \ \"trafficSelectorPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n
\ \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n
\ \"expressRouteGatewayBypass\": false,\r\n \"dpdTimeoutSeconds\": 0,\r\n
\ \"connectionMode\": \"Default\"\r\n }\r\n}"
@@ -3567,11 +3646,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1863'
+ - '1858'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:07:13 GMT
+ - Wed, 31 Mar 2021 06:33:27 GMT
expires:
- '-1'
pragma:
@@ -3588,7 +3667,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 18b95e6b-f669-4a73-a0a4-aa23251f79e1
+ - 7d661448-a52e-4a82-8179-abebee8c9424
status:
code: 200
message: OK
@@ -3606,16 +3685,16 @@ interactions:
ParameterSetName:
- -g --connection-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\",\r\n
- \ \"etag\": \"W/\\\"bbf363f3-b257-4967-88b8-5a2529c5ea39\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"791d0bb9-6602-41c3-b466-e3c79468db55\\\"\",\r\n \"type\":
\"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"tags\":
{},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"6b987140-5819-4fe1-9128-07abaeb49001\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"resourceGuid\": \"475f7fa7-34cd-4a96-97d1-69a3efc7e1ce\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\r\n
\ },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\r\n
\ },\r\n \"connectionType\": \"IPsec\",\r\n \"connectionProtocol\":
@@ -3626,7 +3705,7 @@ interactions:
\"GCMAES256\",\r\n \"ipsecIntegrity\": \"GCMAES256\",\r\n \"ikeEncryption\":
\"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\":
\"DHGroup24\",\r\n \"pfsGroup\": \"PFS24\"\r\n }\r\n ],\r\n
- \ \"trafficSelectorPolicies\": [],\r\n \"connectionStatus\": \"NotConnected\",\r\n
+ \ \"trafficSelectorPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n
\ \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n
\ \"expressRouteGatewayBypass\": false,\r\n \"dpdTimeoutSeconds\": 0,\r\n
\ \"connectionMode\": \"Default\"\r\n }\r\n}"
@@ -3634,11 +3713,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1863'
+ - '1858'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:07:14 GMT
+ - Wed, 31 Mar 2021 06:33:29 GMT
expires:
- '-1'
pragma:
@@ -3655,7 +3734,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - cd708bc9-8b15-43e9-9b1b-e814ae0bf87f
+ - 9248bcb8-f55b-4d0a-bb53-e8ba66813956
status:
code: 200
message: OK
@@ -3673,16 +3752,16 @@ interactions:
ParameterSetName:
- -g --connection-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\",\r\n
- \ \"etag\": \"W/\\\"bbf363f3-b257-4967-88b8-5a2529c5ea39\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"791d0bb9-6602-41c3-b466-e3c79468db55\\\"\",\r\n \"type\":
\"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"tags\":
{},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"6b987140-5819-4fe1-9128-07abaeb49001\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"resourceGuid\": \"475f7fa7-34cd-4a96-97d1-69a3efc7e1ce\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\r\n
\ },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\r\n
\ },\r\n \"connectionType\": \"IPsec\",\r\n \"connectionProtocol\":
@@ -3693,7 +3772,7 @@ interactions:
\"GCMAES256\",\r\n \"ipsecIntegrity\": \"GCMAES256\",\r\n \"ikeEncryption\":
\"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\":
\"DHGroup24\",\r\n \"pfsGroup\": \"PFS24\"\r\n }\r\n ],\r\n
- \ \"trafficSelectorPolicies\": [],\r\n \"connectionStatus\": \"NotConnected\",\r\n
+ \ \"trafficSelectorPolicies\": [],\r\n \"connectionStatus\": \"Unknown\",\r\n
\ \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n
\ \"expressRouteGatewayBypass\": false,\r\n \"dpdTimeoutSeconds\": 0,\r\n
\ \"connectionMode\": \"Default\"\r\n }\r\n}"
@@ -3701,11 +3780,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1863'
+ - '1858'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:07:15 GMT
+ - Wed, 31 Mar 2021 06:33:30 GMT
expires:
- '-1'
pragma:
@@ -3722,7 +3801,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 236d3c1d-3bd3-480d-99f9-d3c8fa5fe585
+ - a8c2bec5-0b9e-45a6-8bc7-85d46b296cfb
status:
code: 200
message: OK
@@ -3751,16 +3830,16 @@ interactions:
ParameterSetName:
- -g --connection-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\",\r\n
- \ \"etag\": \"W/\\\"f23dd71a-6c34-4f85-ba75-02bf1f0a6179\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"0f2968fc-6500-4576-921b-9e0083d4084b\\\"\",\r\n \"type\":
\"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"tags\":
{},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"6b987140-5819-4fe1-9128-07abaeb49001\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"resourceGuid\": \"475f7fa7-34cd-4a96-97d1-69a3efc7e1ce\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\r\n
\ },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\r\n
\ },\r\n \"connectionType\": \"IPsec\",\r\n \"connectionProtocol\":
@@ -3772,7 +3851,7 @@ interactions:
\ \"connectionMode\": \"Default\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9e339c9d-a8f9-4be8-bb33-3c746854db2a?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ce1c69dd-2c4d-4f59-95b2-03c0158c7d96?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -3780,7 +3859,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:07:19 GMT
+ - Wed, 31 Mar 2021 06:33:33 GMT
expires:
- '-1'
pragma:
@@ -3797,9 +3876,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - cb16288e-6310-4d43-ac9b-4e2a59da3a03
+ - 13dc005f-0b64-4777-b6a3-04f88a8e21ee
x-ms-ratelimit-remaining-subscription-writes:
- - '1182'
+ - '1198'
status:
code: 200
message: OK
@@ -3817,9 +3896,9 @@ interactions:
ParameterSetName:
- -g --connection-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9e339c9d-a8f9-4be8-bb33-3c746854db2a?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ce1c69dd-2c4d-4f59-95b2-03c0158c7d96?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -3831,7 +3910,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:07:29 GMT
+ - Wed, 31 Mar 2021 06:33:43 GMT
expires:
- '-1'
pragma:
@@ -3848,7 +3927,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a0deda7d-47f1-4123-9adf-bc73366eaf49
+ - 76009ac1-3776-4922-aa50-259690635f1d
status:
code: 200
message: OK
@@ -3866,9 +3945,9 @@ interactions:
ParameterSetName:
- -g --connection-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9e339c9d-a8f9-4be8-bb33-3c746854db2a?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ce1c69dd-2c4d-4f59-95b2-03c0158c7d96?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -3880,7 +3959,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:07:50 GMT
+ - Wed, 31 Mar 2021 06:34:03 GMT
expires:
- '-1'
pragma:
@@ -3897,7 +3976,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5d916693-ba3c-45c1-875a-61380be9bfbf
+ - ee13087e-78c5-4e43-98d5-69997a2b8e7f
status:
code: 200
message: OK
@@ -3915,16 +3994,16 @@ interactions:
ParameterSetName:
- -g --connection-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\",\r\n
- \ \"etag\": \"W/\\\"2b580de6-32c8-474c-956e-06a4bb387b78\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"c06c42d1-de39-4970-8676-9bd107f6e067\\\"\",\r\n \"type\":
\"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"tags\":
{},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"6b987140-5819-4fe1-9128-07abaeb49001\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"resourceGuid\": \"475f7fa7-34cd-4a96-97d1-69a3efc7e1ce\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\r\n
\ },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\r\n
\ },\r\n \"connectionType\": \"IPsec\",\r\n \"connectionProtocol\":
@@ -3943,7 +4022,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:07:51 GMT
+ - Wed, 31 Mar 2021 06:34:04 GMT
expires:
- '-1'
pragma:
@@ -3960,7 +4039,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e1d4c5ab-3bfb-4272-b6b7-f3625cb02a16
+ - 181c72b0-252a-48e9-829b-7dcd23221256
status:
code: 200
message: OK
@@ -3978,16 +4057,16 @@ interactions:
ParameterSetName:
- -g --connection-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"conn1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/connections/conn1\",\r\n
- \ \"etag\": \"W/\\\"2b580de6-32c8-474c-956e-06a4bb387b78\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"c06c42d1-de39-4970-8676-9bd107f6e067\\\"\",\r\n \"type\":
\"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"tags\":
{},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"6b987140-5819-4fe1-9128-07abaeb49001\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"resourceGuid\": \"475f7fa7-34cd-4a96-97d1-69a3efc7e1ce\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\"\r\n
\ },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_connection_ipsec000001/providers/Microsoft.Network/localNetworkGateways/lgw1\"\r\n
\ },\r\n \"connectionType\": \"IPsec\",\r\n \"connectionProtocol\":
@@ -4006,7 +4085,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:07:53 GMT
+ - Wed, 31 Mar 2021 06:34:06 GMT
expires:
- '-1'
pragma:
@@ -4023,7 +4102,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - ac3aa27d-ee87-474a-ba1f-230673667d35
+ - cf314dd4-3b0f-4160-942f-6c29affc821a
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 43c6ad0b57b..77266af352b 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
@@ -3565,6 +3565,12 @@ def test_network_vpn_connection_ipsec(self, resource_group):
self.cmd('network vnet-gateway create -g {rg} -n {gw1} --public-ip-address {gw1ip} --vnet {vnet1} --sku {gw1_sku}')
self.cmd('network local-gateway create -g {rg} -n {lgw1} --gateway-ip-address {lgw1ip} --local-address-prefixes {lgw1_prefix1} {lgw1_prefix2}')
self.cmd('network vpn-connection create -g {rg} -n {conn1} --vnet-gateway1 {gw1} --local-gateway2 {lgw1} --shared-key AzureA1b2C3')
+ self.cmd('network vpn-connection list -g {rg}', checks=[
+ self.check('length(@)', 1)
+ ])
+ self.cmd('network vpn-connection list -g {rg} --vnet-gateway-name {gw1}', checks=[
+ self.check('length(@)', 1)
+ ])
self.cmd('network vpn-connection ipsec-policy add -g {rg} --connection-name {conn1} --ike-encryption AES256 --ike-integrity SHA384 --dh-group DHGroup24 --ipsec-encryption GCMAES256 --ipsec-integrity GCMAES256 --pfs-group PFS24 --sa-lifetime 7200 --sa-max-size 2048')
self.cmd('network vpn-connection ipsec-policy list -g {rg} --connection-name {conn1}')
From 38efe9b88f8672405b06274539277a7105a37703 Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Thu, 1 Apr 2021 14:50:45 +0800
Subject: [PATCH 02/19] add new command 'az network vnet-gateway
disconnect-vpn-connections'
---
.../cli/command_modules/network/_help.py | 10 +-
.../cli/command_modules/network/_params.py | 8 +-
.../command_modules/network/_validators.py | 13 +
.../cli/command_modules/network/commands.py | 1 +
.../cli/command_modules/network/custom.py | 8 +
...twork_vpn_gateway_disconnect_connects.yaml | 7781 +++++++++++++++++
.../tests/latest/test_network_commands.py | 39 +-
7 files changed, 7857 insertions(+), 3 deletions(-)
create mode 100644 src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_disconnect_connects.yaml
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 dd57e38a42b..f18d43877ef 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_help.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_help.py
@@ -5501,6 +5501,14 @@
text: az network vnet-gateway delete -g MyResourceGroup -n MyVnetGateway
"""
+helps['network vnet-gateway disconnect-vpn-connections'] = """
+type: command
+short-summary: Disconnect vpn connections of virtual network gateway.
+examples:
+ - name: Disconnect vpn connections of virtual network gateway.
+ text: az network vnet-gateway disconnect-vpn-connections -g MyResourceGroup -n MyVnetGateway --vpn-connections MyConnetion1ByName MyConnection2ByID
+"""
+
helps['network vnet-gateway ipsec-policy'] = """
type: group
short-summary: Manage virtual network gateway IPSec policies.
@@ -5818,7 +5826,7 @@
- name: List all VPN connections in a resource group.
text: az network vpn-connection list -g MyResourceGroup
- name: List all VPN connections in a virtual network gateway.
- text: az network vpn-connection list -g MyResourceGroup --vnet-gateway-name MyVnetGateway
+ text: az network vpn-connection list -g MyResourceGroup --vnet-gateway MyVnetGateway
"""
helps['network vpn-connection shared-key'] = """
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 be1698df899..5c332583c6c 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_params.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_params.py
@@ -37,6 +37,7 @@
validate_user_assigned_identity, validate_virtul_network_gateway, validate_private_dns_zone,
NWConnectionMonitorEndpointFilterItemAction, NWConnectionMonitorTestConfigurationHTTPRequestHeaderAction,
process_private_link_resource_id_argument, process_private_endpoint_connection_id_argument,
+ validate_vpn_connection_name_or_id,
process_vnet_name_or_id, validate_trusted_client_cert)
from azure.mgmt.trafficmanager.models import MonitorProtocol, ProfileStatus
from azure.cli.command_modules.network._completers import (
@@ -1954,6 +1955,11 @@ def load_arguments(self, _):
c.argument('radius_server_auth_certificate', help='Public certificate data for the Radius server auth certificate in Base-64 format. Required only if external Radius auth has been configured with EAPTLS auth.')
c.argument('client_root_certificates', nargs='+', help='Space-separated list of client root certificate public certificate data in Base-64 format. Optional for external Radius-based auth with EAPTLS')
c.argument('use_legacy', min_api='2017-06-01', help='Generate VPN client package using legacy implementation.', arg_type=get_three_state_flag())
+
+ with self.argument_context('network vnet-gateway disconnect-vpn-connections') as c:
+ c.argument('vpn_connection_ids', options_list=['--vpn-connections'], nargs='+',
+ help='List of Name or ID of VPN connections.',
+ validator=validate_vpn_connection_name_or_id)
# endregion
# region VirtualNetworkGatewayConnections
@@ -1966,7 +1972,7 @@ def load_arguments(self, _):
c.argument('express_route_gateway_bypass', min_api='2018-07-01', arg_type=get_three_state_flag(), help='Bypass ExpressRoute gateway for data forwarding.')
with self.argument_context('network vpn-connection list') as c:
- c.argument('virtual_network_gateway_name', options_list=['--vnet-gateway-name'], help='Name of the VNet gateway.', completer=get_resource_name_completion_list('Microsoft.Network/virtualNetworkGateways'))
+ c.argument('virtual_network_gateway_name', options_list=['--vnet-gateway'], help='Name of the VNet gateway.', completer=get_resource_name_completion_list('Microsoft.Network/virtualNetworkGateways'))
with self.argument_context('network vpn-connection create') as c:
c.argument('connection_name', options_list=['--name', '-n'], metavar='NAME', help='Connection name.')
diff --git a/src/azure-cli/azure/cli/command_modules/network/_validators.py b/src/azure-cli/azure/cli/command_modules/network/_validators.py
index 5970e070901..5359ff46e68 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_validators.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_validators.py
@@ -116,6 +116,19 @@ def _validate_vpn_gateway_generation(namespace):
if namespace.gateway_type != 'Vpn' and namespace.vpn_gateway_generation:
raise CLIError('vpn_gateway_generation should not be provided if gateway_type is not Vpn.')
+def validate_vpn_connection_name_or_id(cmd, namespace):
+ if namespace.vpn_connection_ids:
+ from msrestazure.tools import is_valid_resource_id, resource_id
+ from azure.cli.core.commands.client_factory import get_subscription_id
+ for index, vpn_connection_id in enumerate(namespace.vpn_connection_ids):
+ if not is_valid_resource_id(vpn_connection_id):
+ namespace.vpn_connection_ids[index] = resource_id(
+ subscription=get_subscription_id(cmd.cli_ctx),
+ resource_group=namespace.resource_group_name,
+ namespace='Microsoft.Network',
+ type='connections',
+ name=vpn_connection_id
+ )
def validate_ddos_name_or_id(cmd, namespace):
if namespace.ddos_protection_plan:
diff --git a/src/azure-cli/azure/cli/command_modules/network/commands.py b/src/azure-cli/azure/cli/command_modules/network/commands.py
index b3d212538c0..275da362b3b 100644
--- a/src/azure-cli/azure/cli/command_modules/network/commands.py
+++ b/src/azure-cli/azure/cli/command_modules/network/commands.py
@@ -1333,6 +1333,7 @@ def _make_singular(value):
g.command('list-bgp-peer-status', 'begin_get_bgp_peer_status', table_transformer=transform_vnet_gateway_bgp_peer_table)
g.command('list-advertised-routes', 'begin_get_advertised_routes', table_transformer=transform_vnet_gateway_routes_table)
g.command('list-learned-routes', 'begin_get_learned_routes', table_transformer=transform_vnet_gateway_routes_table)
+ g.custom_command('disconnect-vpn-connections', 'disconnect_vnet_gateway_vpn_connections', client_factory=cf_virtual_network_gateways, supports_no_wait=True, is_preview=True, min_api='2019-11-01')
with self.command_group('network vnet-gateway vpn-client', network_vgw_sdk, client_factory=cf_virtual_network_gateways) as g:
g.custom_command('generate', 'generate_vpn_client')
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 23d496bc136..da354a3c26b 100644
--- a/src/azure-cli/azure/cli/command_modules/network/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/network/custom.py
@@ -6477,6 +6477,14 @@ def generate_vpn_client(cmd, client, resource_group_name, virtual_network_gatewa
return client.begin_generate_vpn_profile(resource_group_name, virtual_network_gateway_name, params)
# legacy implementation
return client.begin_generatevpnclientpackage(resource_group_name, virtual_network_gateway_name, params)
+
+def disconnect_vnet_gateway_vpn_connections(cmd, client, resource_group_name, virtual_network_gateway_name,
+ vpn_connection_ids, no_wait=False):
+ P2SVpnConnectionRequest = cmd.get_models('P2SVpnConnectionRequest')
+ request = P2SVpnConnectionRequest(vpn_connection_ids=vpn_connection_ids)
+ return sdk_no_wait(no_wait, client.begin_disconnect_virtual_network_gateway_vpn_connections,
+ resource_group_name, virtual_network_gateway_name, request)
+
# endregion
diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_disconnect_connects.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_disconnect_connects.yaml
new file mode 100644
index 00000000000..dbc8bc5587e
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_disconnect_connects.yaml
@@ -0,0 +1,7781 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network public-ip create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001","name":"cli_test_vpn_gateway_disconnect_connects_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-01T05:58:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:04 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": "westus", "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:
+ - '138'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"pubip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\",\r\n
+ \ \"etag\": \"W/\\\"163cb137-37c5-4774-8aeb-fde7f7523608\\\"\",\r\n \"location\":
+ \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
+ \ \"resourceGuid\": \"695b81c8-926a-4f79-bf11-4d38640587a3\",\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/westus/operations/7dfee5d8-5c9c-4348-b75d-0417d81510da?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '685'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:10 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:
+ - 83af8a79-4fb2-45d5-9379-699768fd5eb1
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network public-ip create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7dfee5d8-5c9c-4348-b75d-0417d81510da?api-version=2020-11-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:
+ - Thu, 01 Apr 2021 05:59:11 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:
+ - d7a247f6-cd46-4b43-b296-b3d09285b317
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network public-ip create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"pubip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\",\r\n
+ \ \"etag\": \"W/\\\"c70353c6-ac3b-4253-a274-8e8905ac3786\\\"\",\r\n \"location\":
+ \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"resourceGuid\": \"695b81c8-926a-4f79-bf11-4d38640587a3\",\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:
+ - '686'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:12 GMT
+ etag:
+ - W/"c70353c6-ac3b-4253-a274-8e8905ac3786"
+ 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:
+ - 65c03bcf-10aa-4f98-ab77-00b770d15bc4
+ 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:
+ - -n -g
+ User-Agent:
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001","name":"cli_test_vpn_gateway_disconnect_connects_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-01T05:58:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:13 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": "westus", "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:
+ - '138'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\",\r\n
+ \ \"etag\": \"W/\\\"3299bbd0-8dc1-47fb-bd48-ff5edf0b01dd\\\"\",\r\n \"location\":
+ \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
+ \ \"resourceGuid\": \"04bd5b8f-b093-4202-9b27-680fe97a7ac0\",\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/westus/operations/9aee764a-521d-4a44-b376-a1eaa6b3a614?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '685'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:18 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:
+ - 23673cfd-6372-4e86-992a-de141c763849
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network public-ip create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9aee764a-521d-4a44-b376-a1eaa6b3a614?api-version=2020-11-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:
+ - Thu, 01 Apr 2021 05:59:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 4b5c72a3-0ea2-41ed-b9b3-eb2e33435600
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network public-ip create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\",\r\n
+ \ \"etag\": \"W/\\\"74a45722-5e30-4ab0-9081-3a960cad2e94\\\"\",\r\n \"location\":
+ \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"resourceGuid\": \"04bd5b8f-b093-4202-9b27-680fe97a7ac0\",\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:
+ - '686'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:20 GMT
+ etag:
+ - W/"74a45722-5e30-4ab0-9081-3a960cad2e94"
+ 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:
+ - 69f137ab-4341-4653-bc25-db913cbe7f17
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --subnet-name --address-prefix
+ User-Agent:
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001","name":"cli_test_vpn_gateway_disconnect_connects_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-01T05:58:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:21 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": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes":
+ ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "GatewaySubnet", "properties":
+ {"addressPrefix": "10.0.0.0/24"}}]}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '211'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --subnet-name --address-prefix
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"myvnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1\",\r\n
+ \ \"etag\": \"W/\\\"3e0dceb5-81d2-4dde-bb25-12aec00dbe70\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
+ \ \"resourceGuid\": \"9973c05b-fe18-4a9f-8f62-14a0acd78332\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\",\r\n
+ \ \"etag\": \"W/\\\"3e0dceb5-81d2-4dde-bb25-12aec00dbe70\\\"\",\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\":
+ \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a162c854-5f5d-4202-97bc-c825dcd2d268?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1421'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:28 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:
+ - 6b608af6-fb37-46cc-a0e3-c4d588626e6e
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --subnet-name --address-prefix
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a162c854-5f5d-4202-97bc-c825dcd2d268?api-version=2020-11-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:
+ - Thu, 01 Apr 2021 05:59:31 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:
+ - dab86ee4-a9a2-4331-a05f-dbfb79ed4cdf
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --subnet-name --address-prefix
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"myvnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1\",\r\n
+ \ \"etag\": \"W/\\\"fe40e72d-9830-491c-839b-a27402732537\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"resourceGuid\": \"9973c05b-fe18-4a9f-8f62-14a0acd78332\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\",\r\n
+ \ \"etag\": \"W/\\\"fe40e72d-9830-491c-839b-a27402732537\\\"\",\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
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1423'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:31 GMT
+ etag:
+ - W/"fe40e72d-9830-491c-839b-a27402732537"
+ 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:
+ - a216d768-e5cd-47be-b976-615748c11c88
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --subnet-name --address-prefix
+ User-Agent:
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001","name":"cli_test_vpn_gateway_disconnect_connects_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-01T05:58:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:31 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": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes":
+ ["10.1.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "GatewaySubnet", "properties":
+ {"addressPrefix": "10.1.0.0/24"}}]}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '211'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --subnet-name --address-prefix
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"myvnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2\",\r\n
+ \ \"etag\": \"W/\\\"d58650a9-cfa4-49dc-b208-bf1ff249cbd3\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
+ \ \"resourceGuid\": \"1ff54630-cdb0-4e12-b944-f2b145de0aaa\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\",\r\n
+ \ \"etag\": \"W/\\\"d58650a9-cfa4-49dc-b208-bf1ff249cbd3\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
+ \ \"addressPrefix\": \"10.1.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
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8c4819a0-add2-49d6-8d53-fb2f7141e834?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1421'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:37 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:
+ - 1d1bce12-eb6a-4538-8dbd-826813b19fbc
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --subnet-name --address-prefix
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8c4819a0-add2-49d6-8d53-fb2f7141e834?api-version=2020-11-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:
+ - Thu, 01 Apr 2021 05:59:41 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:
+ - 542902fd-d267-4381-a1d3-4f9ce4d40666
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --subnet-name --address-prefix
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"myvnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2\",\r\n
+ \ \"etag\": \"W/\\\"8fd0a2ad-b3de-414b-99ed-16c8eb834505\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"resourceGuid\": \"1ff54630-cdb0-4e12-b944-f2b145de0aaa\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\",\r\n
+ \ \"etag\": \"W/\\\"8fd0a2ad-b3de-414b-99ed-16c8eb834505\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"addressPrefix\": \"10.1.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
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1423'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:41 GMT
+ etag:
+ - W/"8fd0a2ad-b3de-414b-99ed-16c8eb834505"
+ 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:
+ - c7d8db60-d9bf-45d6-bdd4-fef14e6d1a34
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --vpn-gateway-generation --address-prefixes
+ --no-wait
+ User-Agent:
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001","name":"cli_test_vpn_gateway_disconnect_connects_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-01T05:58:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:42 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": "westus", "properties": {"ipConfigurations": [{"name": "vnetGatewayConfig0",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet"},
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1"}}}],
+ "gatewayType": "Vpn", "vpnType": "RouteBased", "vpnGatewayGeneration": "Generation1",
+ "activeActive": false, "sku": {"name": "Basic", "tier": "Basic"}, "vpnClientConfiguration":
+ {"vpnClientAddressPool": {"addressPrefixes": ["201.169.0.0/16"]}}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '857'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --vpn-gateway-generation --address-prefixes
+ --no-wait
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5b5d28e4-edb7-4219-b609-ae4eeab66604?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:48 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:
+ - 9940f60e-b2e8-4ea6-a6f2-2cb7ccbaaa79
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --vpn-gateway-generation --no-wait
+ User-Agent:
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001","name":"cli_test_vpn_gateway_disconnect_connects_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-01T05:58:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:49 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": "westus", "properties": {"ipConfigurations": [{"name": "vnetGatewayConfig0",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet"},
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2"}}}],
+ "gatewayType": "Vpn", "vpnType": "RouteBased", "vpnGatewayGeneration": "Generation1",
+ "activeActive": false, "sku": {"name": "Basic", "tier": "Basic"}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '764'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --vpn-gateway-generation --no-wait
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"bf1355cd-3dae-46ff-a190-ea3f150b8795\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientProtocols\": [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\":
+ [],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f14d9214-fe40-4006-b6dd-c5423d0168e0?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2823'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:53 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:
+ - 35afb38c-fe80-46d0-86b4-da3f7b9e8dad
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 05:59:53 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:
+ - 6513a08d-8a98-41c5-b09a-4e803373b4b5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:00:24 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:
+ - f29807a9-7e49-452b-b41e-fe991985e034
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:00:54 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:
+ - 4af33a48-6da4-4fa6-8590-df4eb07ca202
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:01:24 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:
+ - 28745956-5ccd-4474-9ddb-90b0901650a6
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:01:55 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:
+ - 6ead928f-4683-4f9a-b84c-8c529803c3f1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:02:25 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:
+ - d38a7759-ce75-45b4-89cd-0aa5cad04618
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:02:56 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:
+ - 3ff55d1e-87ca-449a-ad93-90bc76baaa58
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:03:26 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:
+ - fc7632ac-dc8e-41b3-a044-b574f6daa49f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:03:56 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:
+ - d7e0d5d8-4699-447d-a44a-96e45936dda4
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:04:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - aec6a8d2-dc1c-4bc6-9ad8-1f14849405f7
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:04:57 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:
+ - a1103205-fc4c-4ebe-90fb-477a97e51c5b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:05:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - c2fb6794-4d15-4e2b-b878-f55bd322dcbf
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:05:58 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:
+ - de6ba2e5-e693-491d-b723-ecb185a8a30d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:06: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:
+ - 774ef459-8bd6-4fec-925d-897f2141bc35
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:06:58 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:
+ - 6f5e5a9b-fe03-4cf9-bae1-144d32d1fc26
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:07:29 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:
+ - 9a8dbcde-72dc-407c-babb-9ce41be555d9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:07:59 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:
+ - 7137d2fa-057a-4475-8929-bbea63497e4a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:08: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:
+ - b908c386-a978-40cf-b0f7-e6317a0d96a8
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:09:00 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:
+ - 44c9f9ac-a69b-4952-bde9-efad6f892e5c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:09:29 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:
+ - 8eaaad52-fe75-4ebf-b292-544da568bbac
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:09:59 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:
+ - 84c8189f-4af7-46f9-9715-ae0a9fb51b49
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:10:30 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:
+ - 1960b9e9-1ab8-4443-9820-c3756c80e0fb
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:11:01 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:
+ - 20a35773-6647-475b-8211-a99c6b169041
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:11:32 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:
+ - 30ac6c91-de7a-4dbb-b627-44f35a185eb9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:12: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:
+ - c58aee01-2856-4a57-b1ba-557fe69a8f8c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:12:32 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:
+ - 56caa788-48e4-4405-a40e-369aa9609ef1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:13: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:
+ - 47fa4c3f-701d-4062-b541-a2a433b4a1bf
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:13:32 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:
+ - dcd26358-988a-4357-b124-19baa65fe010
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:14:03 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:
+ - 7724cd28-5f6f-4694-8d29-248162d28a58
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:14:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - ea8f6284-77c2-454c-bd44-b367f039582c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:15:03 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:
+ - 01584398-d163-4fc7-9154-d5358fbcf5e2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:15:34 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:
+ - 22d0531f-8c81-4623-a223-53d26728f911
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:16:04 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:
+ - 27fc43f5-9567-47da-bb5f-4d83347f304d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:16:34 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:
+ - 5d3bc305-a0bd-4597-96f9-91851332d13c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:17:05 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:
+ - 768fe411-54bd-44db-93e7-60e019ee3d9e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:17:35 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:
+ - a805dc7e-86a8-4b30-9e9f-8857946faa87
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:18:06 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:
+ - 2ce39866-ac87-4047-b0de-4db7e6915321
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:18:36 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:
+ - d87240a4-5f18-4654-8763-2c647c8be6a3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:19:06 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:
+ - c19d4e73-5253-4b2e-85f5-1eb2f08a0514
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:19:37 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:
+ - a7d5e4f6-c1bb-4d80-a153-a6813acc7723
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:20: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:
+ - 113bb9e7-1808-4f4e-b6b2-96ce8fb03747
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:20:37 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:
+ - 70ce393d-1a7f-4b26-8052-2305429e8c93
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:21: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:
+ - 25231c00-05d5-4b6e-84e7-60eadd0fd3e3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:21:38 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:
+ - cfa1d18a-4246-4a50-a4d7-5d3b81c58d8a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:22:08 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:
+ - ca4182d4-e2ae-4219-b2ca-7ea38766e00e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:22:38 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:
+ - 1fcb48dd-deab-4939-8f14-2b29ac8ccf8f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:23: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:
+ - 3f9ff053-d857-40bc-a429-102d2a5eab0d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:23:39 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:
+ - 7156779c-81d0-4ba2-a3be-c958f834d270
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:24:10 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:
+ - 31faa2c3-9eef-49d4-b710-13c436ffa877
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:24:40 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:
+ - 3ecda89c-405d-4e3b-b212-00812762610c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:25:10 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:
+ - 9fd2aeb3-7e3c-4d9a-a19c-f522b7ac5786
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:25:41 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:
+ - 112a1957-c6e2-40c2-a488-042abf621829
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:26:11 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:
+ - 5d8667d0-b5e2-4dfe-97b2-92d968c3bb44
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:26:41 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:
+ - 4c9f6eea-5c8b-4e71-b833-4333e83069d6
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:27:11 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:
+ - 31aad4b6-9bc9-4651-8468-1cc77bc52e55
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:27:42 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:
+ - d025594f-4983-4bc0-9a1c-b1afcd6b8875
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:28:13 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:
+ - 39c7eb5a-0440-4ac1-8373-e88fcb8e0653
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:28:43 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:
+ - 716c8c4e-b111-46b0-aa4a-1765b8e81723
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:29:14 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:
+ - 40b2b6e3-08d2-497b-818c-5843957ce44b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:29:44 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:
+ - a4ad10e5-3fc7-4cbb-9792-8670f7c8e43f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:30:14 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:
+ - 8d889f2b-21a6-4796-9d26-96f9873e2ca1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:30:44 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:
+ - 16ac7b04-d87b-467c-990d-a96fb697a4dc
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:31:15 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:
+ - 82babf86-7106-40f9-a132-dc35d8a0a6e5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:31:44 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:
+ - 77f9e31d-cfec-48e7-ad55-0c24ecd442b9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"c5050b30-b5f8-40db-a936-351662fac649\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\": []\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 0,\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2935'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:32:15 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:
+ - 59aad218-2b8c-4486-b99c-6df691e4e3ae
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"1ce6c39d-806f-4c44-88ad-b11ecb56fa3f\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"8f47a162-029e-4e66-8465-97ae9acbc6f0\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"1ce6c39d-806f-4c44-88ad-b11ecb56fa3f\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"201.169.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\": [],\r\n
+ \ \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\":
+ [],\r\n \"vpnClientConnectionHealth\": {\r\n \"vpnClientConnectionsCount\":
+ 0,\r\n \"totalIngressBytesTransferred\": 0,\r\n \"totalEgressBytesTransferred\":
+ 0\r\n },\r\n \"radiusServers\": [],\r\n \"vpnClientIpsecPolicies\":
+ []\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\":
+ \"10.0.0.254\",\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\":
+ [\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"104.42.29.173\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3273'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:32:47 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:
+ - fdd38b22-fb1b-4c4b-a2ae-aa7ea7ecb1c3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"bf1355cd-3dae-46ff-a190-ea3f150b8795\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
+ 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2541'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:32:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - ad49b4d8-0fab-4fae-a0eb-11e0861cf231
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"bf1355cd-3dae-46ff-a190-ea3f150b8795\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
+ 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2541'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:33: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:
+ - de2a8884-5cc2-405c-8407-ffe88dc2cc78
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"bf1355cd-3dae-46ff-a190-ea3f150b8795\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
+ 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2541'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:33:49 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:
+ - 9ff9f7c4-fdc5-488a-80c6-ccf76453db37
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"bf1355cd-3dae-46ff-a190-ea3f150b8795\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
+ 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2541'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:34: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:
+ - 3d82f76e-3f28-46d8-b1b7-08ec92e4cc18
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"bf1355cd-3dae-46ff-a190-ea3f150b8795\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
+ 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2541'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:34:50 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:
+ - e7294342-52d3-4d35-9001-75cd6bff200e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"bf1355cd-3dae-46ff-a190-ea3f150b8795\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
+ 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2541'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:35:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 81b7800e-dfcf-4039-bdc3-49c70dc5d4fc
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"bf1355cd-3dae-46ff-a190-ea3f150b8795\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
+ 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2541'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:35:50 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:
+ - 57a3e3df-de88-4bfe-ae92-e7bc6c798098
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"bf1355cd-3dae-46ff-a190-ea3f150b8795\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
+ 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2541'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:36:21 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:
+ - ed081950-b6e1-4484-9119-6aaed0743061
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"bf1355cd-3dae-46ff-a190-ea3f150b8795\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
+ 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2541'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:36:51 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:
+ - 02310cdc-a94e-4c7a-bdaa-b7d0ce0fcefc
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"bf1355cd-3dae-46ff-a190-ea3f150b8795\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
+ 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2541'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:37:21 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:
+ - 215f3e13-eca2-4833-ad49-da7a9531aba0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"bf1355cd-3dae-46ff-a190-ea3f150b8795\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
+ 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2541'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:37:52 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:
+ - e186f2fd-da91-4f01-9644-06be93d431c3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"bf1355cd-3dae-46ff-a190-ea3f150b8795\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"bb76536b-0458-457f-a429-95d659a9cca7\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
+ 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2541'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:38:22 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:
+ - bc7fff16-14a7-4b0f-a141-4bb96ee52f8a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
+ \ \"etag\": \"W/\\\"5428611b-9e65-458a-a7da-6875038db09c\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"bf1355cd-3dae-46ff-a190-ea3f150b8795\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"5428611b-9e65-458a-a7da-6875038db09c\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
+ 65515,\r\n \"bgpPeeringAddress\": \"10.1.0.254\",\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.1.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"40.78.106.130\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2704'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:38:52 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:
+ - 8cf438fd-5ec9-470c-ab64-7b493dc01580
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vpn-connection create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --shared-key --vnet-gateway1 --vnet-gateway2
+ User-Agent:
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001","name":"cli_test_vpn_gateway_disconnect_connects_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-01T05:58:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:38: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: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0", "parameters": {"sharedKey": {"type": "securestring",
+ "metadata": {"description": "Secure sharedKey"}}}, "variables": {}, "resources":
+ [{"type": "Microsoft.Network/connections", "name": "conn1to2", "location": "westus",
+ "tags": {}, "apiVersion": "2015-06-15", "dependsOn": [], "properties": {"virtualNetworkGateway1":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},
+ "enableBgp": false, "connectionType": "Vnet2Vnet", "routingWeight": 10, "usePolicyBasedTrafficSelectors":
+ false, "expressRouteGatewayBypass": null, "virtualNetworkGateway2": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},
+ "sharedKey": "[parameters(''sharedKey'')]"}}], "outputs": {"resource": {"type":
+ "object", "value": "[reference(''conn1to2'')]"}}}, "parameters": {"sharedKey":
+ {"value": "123"}}, "mode": "Incremental"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vpn-connection create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1268'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -n -g --shared-key --vnet-gateway1 --vnet-gateway2
+ User-Agent:
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_FSpAIi2awO1b6HCstEfNXikeGtgXP551","name":"vpn_connection_deploy_FSpAIi2awO1b6HCstEfNXikeGtgXP551","type":"Microsoft.Resources/deployments","properties":{"templateHash":"648844659829324375","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-01T06:38:57.5977563Z","duration":"PT2.1417383S","correlationId":"a65f4bf7-1c92-453f-8906-98e0c7d66b29","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_FSpAIi2awO1b6HCstEfNXikeGtgXP551/operationStatuses/08585843477500216003?api-version=2020-10-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '769'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:38:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vpn-connection create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --shared-key --vnet-gateway1 --vnet-gateway2
+ User-Agent:
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585843477500216003?api-version=2020-10-01
+ response:
+ body:
+ string: '{"status":"Succeeded"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '22'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:39:28 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: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vpn-connection create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --shared-key --vnet-gateway1 --vnet-gateway2
+ User-Agent:
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_FSpAIi2awO1b6HCstEfNXikeGtgXP551","name":"vpn_connection_deploy_FSpAIi2awO1b6HCstEfNXikeGtgXP551","type":"Microsoft.Resources/deployments","properties":{"templateHash":"648844659829324375","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-01T06:39:22.906215Z","duration":"PT27.450197S","correlationId":"a65f4bf7-1c92-453f-8906-98e0c7d66b29","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"ebfd3975-0c9d-4496-8c61-bd7d15a0e97b","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},"connectionType":"Vnet2Vnet","connectionProtocol":"IKEv2","routingWeight":10,"sharedKey":"123","enableBgp":false,"useLocalAzureIpAddress":false,"trafficSelectorPolicies":[],"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0,"dpdTimeoutSeconds":0,"connectionMode":"Default"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/connections/conn1to2"}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1907'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:39:29 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: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vpn-connection create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --shared-key --vnet-gateway2 --vnet-gateway1
+ User-Agent:
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001","name":"cli_test_vpn_gateway_disconnect_connects_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-01T05:58:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:39:30 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: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0", "parameters": {"sharedKey": {"type": "securestring",
+ "metadata": {"description": "Secure sharedKey"}}}, "variables": {}, "resources":
+ [{"type": "Microsoft.Network/connections", "name": "conn2to1", "location": "westus",
+ "tags": {}, "apiVersion": "2015-06-15", "dependsOn": [], "properties": {"virtualNetworkGateway1":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},
+ "enableBgp": false, "connectionType": "Vnet2Vnet", "routingWeight": 10, "usePolicyBasedTrafficSelectors":
+ false, "expressRouteGatewayBypass": null, "virtualNetworkGateway2": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},
+ "sharedKey": "[parameters(''sharedKey'')]"}}], "outputs": {"resource": {"type":
+ "object", "value": "[reference(''conn2to1'')]"}}}, "parameters": {"sharedKey":
+ {"value": "123"}}, "mode": "Incremental"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vpn-connection create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1268'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -n -g --shared-key --vnet-gateway2 --vnet-gateway1
+ User-Agent:
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_l3YT9bQ4knVjQ27gOJnEpXKY41qw4rxS","name":"vpn_connection_deploy_l3YT9bQ4knVjQ27gOJnEpXKY41qw4rxS","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12834701589064203491","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-01T06:39:33.8457279Z","duration":"PT1.9786679S","correlationId":"8c557322-322b-484a-a98c-51a0ac868b7c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_l3YT9bQ4knVjQ27gOJnEpXKY41qw4rxS/operationStatuses/08585843477136105600?api-version=2020-10-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '771'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:39:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vpn-connection create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --shared-key --vnet-gateway2 --vnet-gateway1
+ User-Agent:
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585843477136105600?api-version=2020-10-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:40:05 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: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vpn-connection create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --shared-key --vnet-gateway2 --vnet-gateway1
+ User-Agent:
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585843477136105600?api-version=2020-10-01
+ response:
+ body:
+ string: '{"status":"Succeeded"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '22'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:40:35 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: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vpn-connection create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --shared-key --vnet-gateway2 --vnet-gateway1
+ User-Agent:
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_l3YT9bQ4knVjQ27gOJnEpXKY41qw4rxS","name":"vpn_connection_deploy_l3YT9bQ4knVjQ27gOJnEpXKY41qw4rxS","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12834701589064203491","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-01T06:40:16.7272499Z","duration":"PT44.8601899S","correlationId":"8c557322-322b-484a-a98c-51a0ac868b7c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"9d8b13bc-52c5-41af-abe3-a604e05a234c","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},"connectionType":"Vnet2Vnet","connectionProtocol":"IKEv2","routingWeight":10,"sharedKey":"123","enableBgp":false,"useLocalAzureIpAddress":false,"trafficSelectorPolicies":[],"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0,"dpdTimeoutSeconds":0,"connectionMode":"Default"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/connections/conn2to1"}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1911'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:40:36 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: '{"vpnConnectionIds": ["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/connections/conn1to2"]}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway disconnect-vpn-connections
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '217'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --vpn-connections
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_disconnect_connects_000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/disconnectVirtualNetworkGatewayVpnConnections?api-version=2020-11-01
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Thu, 01 Apr 2021 06:40:38 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/66276431-ea36-4f7d-9c7f-7a2984fa8aaf?api-version=2020-11-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 05a28ee3-a53c-4d87-a544-b44cba04cfa9
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway disconnect-vpn-connections
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vpn-connections
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/66276431-ea36-4f7d-9c7f-7a2984fa8aaf?api-version=2020-11-01
+ response:
+ body:
+ string: 'null'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:40:48 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/66276431-ea36-4f7d-9c7f-7a2984fa8aaf?api-version=2020-11-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 05a28ee3-a53c-4d87-a544-b44cba04cfa9
+ status:
+ code: 200
+ message: OK
+version: 1
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 77266af352b..86a6b5c033a 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
@@ -3568,7 +3568,7 @@ def test_network_vpn_connection_ipsec(self, resource_group):
self.cmd('network vpn-connection list -g {rg}', checks=[
self.check('length(@)', 1)
])
- self.cmd('network vpn-connection list -g {rg} --vnet-gateway-name {gw1}', checks=[
+ self.cmd('network vpn-connection list -g {rg} --vnet-gateway {gw1}', checks=[
self.check('length(@)', 1)
])
@@ -4130,6 +4130,9 @@ def test_network_vpn_gateway(self, resource_group):
self.cmd('network vnet-gateway list-learned-routes -g {rg} -n {gw1}')
self.cmd('network vnet-gateway list-advertised-routes -g {rg} -n {gw1} --peer 10.1.1.1')
self.cmd('network vnet-gateway list-bgp-peer-status -g {rg} -n {gw1} --peer 10.1.1.1')
+ self.cmd('network vpn-connection list -g {rg} --vnet-gateway {gw1}', checks=[
+ self.check('length(@)', 2)
+ ])
@ResourceGroupPreparer(name_prefix='cli_test_vpn_gateway_aad_')
def test_network_vpn_gateway_aad(self, resource_group):
@@ -4177,6 +4180,40 @@ def test_network_vpn_gateway_aad(self, resource_group):
self.check('aadAudience', None)
])
+ @ResourceGroupPreparer(name_prefix='cli_test_vpn_gateway_disconnect_connects_')
+ def test_network_vpn_gateway_disconnect_connects(self, resource_group):
+ self.kwargs.update({
+ 'vnet1': 'myvnet1',
+ 'vnet2': 'myvnet2',
+ 'gw1': 'gateway1',
+ 'gw2': 'gateway2',
+ 'ip1': 'pubip1',
+ 'ip2': 'pubip2',
+ })
+
+ self.cmd('network public-ip create -n {ip1} -g {rg}')
+ self.cmd('network public-ip create -n {ip2} -g {rg}')
+ self.cmd('network vnet create -g {rg} -n {vnet1} --subnet-name GatewaySubnet --address-prefix 10.0.0.0/16')
+ self.cmd('network vnet create -g {rg} -n {vnet2} --subnet-name GatewaySubnet --address-prefix 10.1.0.0/16')
+
+ self.cmd('network vnet-gateway create -g {rg} -n {gw1} --vnet {vnet1} --public-ip-address {ip1} '
+ '--vpn-gateway-generation Generation1 --address-prefixes 201.169.0.0/16 --no-wait')
+ self.cmd('network vnet-gateway create -g {rg} -n {gw2} --vnet {vnet2} --public-ip-address {ip2} '
+ '--vpn-gateway-generation Generation1 --no-wait')
+
+ self.cmd('network vnet-gateway wait -g {rg} -n {gw1} --created')
+ self.cmd('network vnet-gateway wait -g {rg} -n {gw2} --created')
+
+ self.kwargs.update({
+ 'conn12': 'conn1to2',
+ 'conn21': 'conn2to1',
+ })
+
+ self.cmd('network vpn-connection create -n {conn12} -g {rg} --shared-key 123 '
+ '--vnet-gateway1 {gw1} --vnet-gateway2 {gw2}')
+ self.cmd('network vpn-connection create -n {conn21} -g {rg} --shared-key 123 '
+ '--vnet-gateway2 {gw1} --vnet-gateway1 {gw2}')
+ self.cmd('network vnet-gateway disconnect-vpn-connections -g {rg} -n {gw1} --vpn-connections {conn12}')
class NetworkVpnClientPackageScenarioTest(LiveScenarioTest):
From 6eedec95b829c6dbe897b237d8ed5e5c6a9c9f62 Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Thu, 1 Apr 2021 16:50:05 +0800
Subject: [PATCH 03/19] add command 'network vnet-gateway vpn-client
show-health'
---
.../cli/command_modules/network/_help.py | 8 +
.../cli/command_modules/network/commands.py | 1 +
.../test_network_vnet_gateway_ipsec.yaml | 524 +++++++++++-------
.../tests/latest/test_network_commands.py | 1 +
4 files changed, 323 insertions(+), 211 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 f18d43877ef..854e361fc49 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_help.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_help.py
@@ -5688,6 +5688,14 @@
text: az network vnet-gateway vpn-client show-url -g MyResourceGroup -n MyVnetGateway
"""
+helps['network vnet-gateway vpn-client show-health'] = """
+type: command
+short-summary: Get the VPN client connection health detail per P2S client connection of the virtual network gateway.
+examples:
+ - name: Get the VPN client connection health detail per P2S client connection of the virtual network gateway.
+ text: az network vnet-gateway vpn-client show-health -g MyResourceGroup -n MyVnetGateway
+"""
+
helps['network vnet-gateway wait'] = """
type: command
short-summary: Place the CLI in a waiting state until a condition of the virtual network gateway is met.
diff --git a/src/azure-cli/azure/cli/command_modules/network/commands.py b/src/azure-cli/azure/cli/command_modules/network/commands.py
index 275da362b3b..5be13c84428 100644
--- a/src/azure-cli/azure/cli/command_modules/network/commands.py
+++ b/src/azure-cli/azure/cli/command_modules/network/commands.py
@@ -1338,6 +1338,7 @@ def _make_singular(value):
with self.command_group('network vnet-gateway vpn-client', network_vgw_sdk, client_factory=cf_virtual_network_gateways) as g:
g.custom_command('generate', 'generate_vpn_client')
g.command('show-url', 'begin_get_vpn_profile_package_url', min_api='2017-08-01')
+ g.command('show-health', 'begin_get_vpnclient_connection_health', is_preview=True, min_api='2019-04-01')
with self.command_group('network vnet-gateway revoked-cert', network_vgw_sdk) as g:
g.custom_command('create', 'create_vnet_gateway_revoked_cert')
diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet_gateway_ipsec.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet_gateway_ipsec.yaml
index 9242b2365fb..a7783eaecb1 100644
--- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet_gateway_ipsec.yaml
+++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet_gateway_ipsec.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n --subnet-name
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnet_gateway_ipsec000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001","name":"cli_test_vnet_gateway_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T08:07:58Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001","name":"cli_test_vnet_gateway_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-01T08:25:09Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:00 GMT
+ - Thu, 01 Apr 2021 08:25:18 GMT
expires:
- '-1'
pragma:
@@ -64,21 +64,21 @@ interactions:
ParameterSetName:
- -g -n --subnet-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"ddbfd4f7-f0f6-4a1a-aa2b-3dcaca601ff7\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"58e51485-55f5-41bc-a9dd-e7e71638e86b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"4a118cbe-f474-4c30-9488-ae06946dcb8f\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"5aec34ed-4bc3-4304-ae31-c00c86bc22d9\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"ddbfd4f7-f0f6-4a1a-aa2b-3dcaca601ff7\\\"\",\r\n
+ \ \"etag\": \"W/\\\"58e51485-55f5-41bc-a9dd-e7e71638e86b\\\"\",\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\":
@@ -89,7 +89,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/52bc95ab-3afc-45f7-b23e-283e9378e923?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/09f157a7-7231-4263-bade-781fb6a9463e?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -97,7 +97,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:05 GMT
+ - Thu, 01 Apr 2021 08:25:23 GMT
expires:
- '-1'
pragma:
@@ -110,9 +110,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6babf0b3-2113-421c-853c-b9953d3ce8ed
+ - 576ca49f-bd03-4554-8452-9a16429d6fa0
x-ms-ratelimit-remaining-subscription-writes:
- - '1183'
+ - '1199'
status:
code: 201
message: Created
@@ -130,9 +130,9 @@ interactions:
ParameterSetName:
- -g -n --subnet-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/52bc95ab-3afc-45f7-b23e-283e9378e923?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/09f157a7-7231-4263-bade-781fb6a9463e?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -144,7 +144,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:09 GMT
+ - Thu, 01 Apr 2021 08:25:28 GMT
expires:
- '-1'
pragma:
@@ -161,7 +161,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 4330e61a-aa42-447a-b7da-e751877e68f6
+ - 0f483f13-07ff-440c-924d-0ff88c4ebf2e
status:
code: 200
message: OK
@@ -179,21 +179,21 @@ interactions:
ParameterSetName:
- -g -n --subnet-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"050ee222-06a1-4f17-9af8-2b3b9c8d9574\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"f2e595ab-2d73-400e-a715-e0525be1ab49\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"4a118cbe-f474-4c30-9488-ae06946dcb8f\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"5aec34ed-4bc3-4304-ae31-c00c86bc22d9\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"050ee222-06a1-4f17-9af8-2b3b9c8d9574\\\"\",\r\n
+ \ \"etag\": \"W/\\\"f2e595ab-2d73-400e-a715-e0525be1ab49\\\"\",\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\":
@@ -208,9 +208,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:10 GMT
+ - Thu, 01 Apr 2021 08:25:28 GMT
etag:
- - W/"050ee222-06a1-4f17-9af8-2b3b9c8d9574"
+ - W/"f2e595ab-2d73-400e-a715-e0525be1ab49"
expires:
- '-1'
pragma:
@@ -227,7 +227,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5cf0a477-71c8-4aef-bab2-050e8ff78277
+ - 447307f9-5aa5-4ab9-b886-333e47ccde3e
status:
code: 200
message: OK
@@ -245,15 +245,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnet_gateway_ipsec000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001","name":"cli_test_vnet_gateway_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T08:07:58Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001","name":"cli_test_vnet_gateway_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-01T08:25:09Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -262,7 +262,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:10 GMT
+ - Thu, 01 Apr 2021 08:25:28 GMT
expires:
- '-1'
pragma:
@@ -295,15 +295,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\r\n
- \ \"etag\": \"W/\\\"099ef5e8-1b21-44b4-b1ae-d3b78a788410\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"d19a8e5b-83b3-4c7d-b670-7f729dced4ec\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"68a72a10-48cf-4bc4-bbcc-4d72dd03a5ba\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"b126187a-16e9-4cd5-b915-61b8524446ff\",\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
@@ -312,7 +312,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/02f72b52-194f-4053-9d2c-d83ec2a3f3c6?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/696ad1cd-82fd-4a01-b88d-0c0de35ae1c4?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -320,7 +320,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:16 GMT
+ - Thu, 01 Apr 2021 08:25:33 GMT
expires:
- '-1'
pragma:
@@ -333,9 +333,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 25d0d9fd-80c8-4bf5-86c6-875b38041429
+ - 5b4ec981-d219-4f37-a437-ccf954c97a86
x-ms-ratelimit-remaining-subscription-writes:
- - '1188'
+ - '1199'
status:
code: 201
message: Created
@@ -353,9 +353,9 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/02f72b52-194f-4053-9d2c-d83ec2a3f3c6?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/696ad1cd-82fd-4a01-b88d-0c0de35ae1c4?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -367,7 +367,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:17 GMT
+ - Thu, 01 Apr 2021 08:25:34 GMT
expires:
- '-1'
pragma:
@@ -384,7 +384,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b93e9995-1b04-44ac-a41b-fcc98a1d3650
+ - 27c48e7e-2443-4e00-b349-644a711eeeb2
status:
code: 200
message: OK
@@ -402,15 +402,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\r\n
- \ \"etag\": \"W/\\\"c9d0a10a-9614-4e99-85d0-360cefc0e2f6\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"7dcb0df9-bacf-4450-a0d0-2a1def87c10c\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"68a72a10-48cf-4bc4-bbcc-4d72dd03a5ba\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"b126187a-16e9-4cd5-b915-61b8524446ff\",\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
@@ -423,9 +423,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:17 GMT
+ - Thu, 01 Apr 2021 08:25:35 GMT
etag:
- - W/"c9d0a10a-9614-4e99-85d0-360cefc0e2f6"
+ - W/"7dcb0df9-bacf-4450-a0d0-2a1def87c10c"
expires:
- '-1'
pragma:
@@ -442,7 +442,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9b0671b2-b923-4229-923f-10fd59f134c9
+ - b6c60bf2-d933-4a68-a59d-2c4ddbb52b72
status:
code: 200
message: OK
@@ -461,15 +461,15 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnet_gateway_ipsec000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001","name":"cli_test_vnet_gateway_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T08:07:58Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001","name":"cli_test_vnet_gateway_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-01T08:25:09Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -478,7 +478,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:18 GMT
+ - Thu, 01 Apr 2021 08:25:35 GMT
expires:
- '-1'
pragma:
@@ -517,20 +517,20 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"e64313c5-c4d1-452c-bce4-d8f31be3dab0\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"b91bc6ec-965f-46e6-922f-06dbea26c67a\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"2bbe705e-aace-427f-a30d-b0096ea3f01c\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"e64313c5-c4d1-452c-bce4-d8f31be3dab0\\\"\",\r\n
+ \ \"etag\": \"W/\\\"b91bc6ec-965f-46e6-922f-06dbea26c67a\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -557,7 +557,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25483d8a-f9aa-4853-bad1-5dc444b0373d?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -565,7 +565,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:24 GMT
+ - Thu, 01 Apr 2021 08:25:42 GMT
expires:
- '-1'
pragma:
@@ -578,9 +578,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f5fdfc0f-0d2a-4faa-9f52-1ce67cd6007c
+ - 41258747-b596-4086-a900-56dd318bd133
x-ms-ratelimit-remaining-subscription-writes:
- - '1181'
+ - '1199'
status:
code: 201
message: Created
@@ -599,9 +599,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25483d8a-f9aa-4853-bad1-5dc444b0373d?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -613,7 +613,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:35 GMT
+ - Thu, 01 Apr 2021 08:25:52 GMT
expires:
- '-1'
pragma:
@@ -630,7 +630,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b2290a5a-34d1-47cc-aeab-3fd158ba1210
+ - 2a89d6c9-adab-4739-a6b3-62b1a93703e6
status:
code: 200
message: OK
@@ -649,9 +649,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25483d8a-f9aa-4853-bad1-5dc444b0373d?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -663,7 +663,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:45 GMT
+ - Thu, 01 Apr 2021 08:26:02 GMT
expires:
- '-1'
pragma:
@@ -680,7 +680,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e32b0d5a-15b6-4167-8769-66106f61029d
+ - a5c8a478-3b24-4ee6-8438-9dcd08af0221
status:
code: 200
message: OK
@@ -699,9 +699,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25483d8a-f9aa-4853-bad1-5dc444b0373d?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -713,7 +713,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:09:05 GMT
+ - Thu, 01 Apr 2021 08:26:22 GMT
expires:
- '-1'
pragma:
@@ -730,7 +730,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6ddccae2-ec03-4a2a-84c6-d799fea690f9
+ - 7a40f155-d2a0-4bf0-9a2c-beb8c429e5db
status:
code: 200
message: OK
@@ -749,9 +749,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25483d8a-f9aa-4853-bad1-5dc444b0373d?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -763,7 +763,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:09:26 GMT
+ - Thu, 01 Apr 2021 08:26:42 GMT
expires:
- '-1'
pragma:
@@ -780,7 +780,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - ba15afb2-8c3d-4073-adca-8f26375129c0
+ - e741c118-9b49-45e0-af39-f3d124d4779a
status:
code: 200
message: OK
@@ -799,9 +799,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25483d8a-f9aa-4853-bad1-5dc444b0373d?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -813,7 +813,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:10:06 GMT
+ - Thu, 01 Apr 2021 08:27:22 GMT
expires:
- '-1'
pragma:
@@ -830,7 +830,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 19fbe261-f960-4a40-b393-e25f5b9b87db
+ - f38d1bf0-b7c5-422c-b301-a73629c0ebed
status:
code: 200
message: OK
@@ -849,9 +849,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25483d8a-f9aa-4853-bad1-5dc444b0373d?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -863,7 +863,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:10:47 GMT
+ - Thu, 01 Apr 2021 08:28:03 GMT
expires:
- '-1'
pragma:
@@ -880,7 +880,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 25d40313-dfab-4d27-86a7-3ae28da9e9a4
+ - 5f68e94c-7971-499f-8336-a6e97e4f72c1
status:
code: 200
message: OK
@@ -899,9 +899,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25483d8a-f9aa-4853-bad1-5dc444b0373d?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -913,7 +913,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:12:07 GMT
+ - Thu, 01 Apr 2021 08:29:24 GMT
expires:
- '-1'
pragma:
@@ -930,7 +930,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 052f09f3-7840-497b-ba3c-3a328bc58d33
+ - 69d81dd2-dc39-4c53-b530-da063b3ffd85
status:
code: 200
message: OK
@@ -949,9 +949,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25483d8a-f9aa-4853-bad1-5dc444b0373d?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -963,7 +963,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:14:48 GMT
+ - Thu, 01 Apr 2021 08:32:04 GMT
expires:
- '-1'
pragma:
@@ -980,7 +980,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 3d314316-e20a-4481-9a95-9a06c7cdfbe9
+ - e612e498-83aa-4f10-a60c-c043c386317c
status:
code: 200
message: OK
@@ -999,9 +999,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25483d8a-f9aa-4853-bad1-5dc444b0373d?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1013,7 +1013,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:16:29 GMT
+ - Thu, 01 Apr 2021 08:33:45 GMT
expires:
- '-1'
pragma:
@@ -1030,7 +1030,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 691d38f6-215d-44ad-9e2a-7b60668dbcb6
+ - 415819be-fe3c-4df6-9976-a84e004d7b5b
status:
code: 200
message: OK
@@ -1049,9 +1049,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25483d8a-f9aa-4853-bad1-5dc444b0373d?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1063,7 +1063,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:18:09 GMT
+ - Thu, 01 Apr 2021 08:35:25 GMT
expires:
- '-1'
pragma:
@@ -1080,7 +1080,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6b23ffbe-b417-47ff-914f-4b25b99228dd
+ - 371f2d28-3719-4d48-9036-387ec39fb43f
status:
code: 200
message: OK
@@ -1099,9 +1099,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25483d8a-f9aa-4853-bad1-5dc444b0373d?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1113,7 +1113,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:19:50 GMT
+ - Thu, 01 Apr 2021 08:37:05 GMT
expires:
- '-1'
pragma:
@@ -1130,7 +1130,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 72201ea1-835b-4abc-b7e1-a89adb855831
+ - a1c93d45-506e-446b-8392-616534d7b8c9
status:
code: 200
message: OK
@@ -1149,9 +1149,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25483d8a-f9aa-4853-bad1-5dc444b0373d?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1163,7 +1163,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:21:33 GMT
+ - Thu, 01 Apr 2021 08:38:46 GMT
expires:
- '-1'
pragma:
@@ -1180,7 +1180,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 584f5952-e423-4bc1-b894-9715445e40f1
+ - 096ee78e-2d60-4f22-8138-858a726dec9d
status:
code: 200
message: OK
@@ -1199,9 +1199,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25483d8a-f9aa-4853-bad1-5dc444b0373d?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1213,7 +1213,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:23:13 GMT
+ - Thu, 01 Apr 2021 08:40:26 GMT
expires:
- '-1'
pragma:
@@ -1230,7 +1230,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 43e2d018-2725-47e3-a76e-d80fb34ee2c1
+ - b02cb2a9-1eef-4564-a43c-6f733919bbcc
status:
code: 200
message: OK
@@ -1249,9 +1249,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25483d8a-f9aa-4853-bad1-5dc444b0373d?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -1263,7 +1263,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:24:54 GMT
+ - Thu, 01 Apr 2021 08:42:06 GMT
expires:
- '-1'
pragma:
@@ -1280,7 +1280,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 18c8e6bd-61f8-4cd2-9a53-0981277b668e
+ - c01b1cae-ed65-44b7-9c94-28584a5a84ad
status:
code: 200
message: OK
@@ -1299,20 +1299,20 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"8bad1e22-5d73-4577-bcc7-6c8afb605892\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"10579141-a3dc-4c30-b675-847587f78af1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"2bbe705e-aace-427f-a30d-b0096ea3f01c\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bad1e22-5d73-4577-bcc7-6c8afb605892\\\"\",\r\n
+ \ \"etag\": \"W/\\\"10579141-a3dc-4c30-b675-847587f78af1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1337,7 +1337,7 @@ interactions:
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"40.78.13.140\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
@@ -1347,7 +1347,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:24:56 GMT
+ - Thu, 01 Apr 2021 08:42:08 GMT
expires:
- '-1'
pragma:
@@ -1364,7 +1364,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - bfc73f3e-34dc-4e4c-aa45-2843cc6f3939
+ - 17994531-a767-41f2-a2d2-b187d2ac48c6
status:
code: 200
message: OK
@@ -1383,20 +1383,20 @@ interactions:
- -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"8bad1e22-5d73-4577-bcc7-6c8afb605892\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"10579141-a3dc-4c30-b675-847587f78af1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"2bbe705e-aace-427f-a30d-b0096ea3f01c\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bad1e22-5d73-4577-bcc7-6c8afb605892\\\"\",\r\n
+ \ \"etag\": \"W/\\\"10579141-a3dc-4c30-b675-847587f78af1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1421,7 +1421,7 @@ interactions:
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"40.78.13.140\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
@@ -1431,7 +1431,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:24:57 GMT
+ - Thu, 01 Apr 2021 08:42:10 GMT
expires:
- '-1'
pragma:
@@ -1448,7 +1448,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 05ded714-d022-4444-85cb-8e89e86d3318
+ - a9035a59-1849-4bc9-8a62-2a7453c16890
status:
code: 200
message: OK
@@ -1487,20 +1487,20 @@ interactions:
- -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"ea6c77f8-7d3e-4b54-b521-8cdffb1e5a18\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"f569f54b-209e-4859-9b4f-18cd452cd360\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"2bbe705e-aace-427f-a30d-b0096ea3f01c\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ea6c77f8-7d3e-4b54-b521-8cdffb1e5a18\\\"\",\r\n
+ \ \"etag\": \"W/\\\"f569f54b-209e-4859-9b4f-18cd452cd360\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1527,11 +1527,11 @@ interactions:
[\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"40.78.13.140\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fc2c0bd2-54de-4a83-aaaf-f37c03f3f7fa?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3deb0c0c-7470-4eb6-b6d5-b84b3444bf8a?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -1539,7 +1539,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:25:01 GMT
+ - Thu, 01 Apr 2021 08:42:13 GMT
expires:
- '-1'
pragma:
@@ -1556,9 +1556,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - fcb496c4-4edc-4801-8cc4-ed31e0b96242
+ - 27b9b3c4-6aff-4c45-8827-f481fa6a674b
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
status:
code: 200
message: OK
@@ -1577,9 +1577,9 @@ interactions:
- -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fc2c0bd2-54de-4a83-aaaf-f37c03f3f7fa?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3deb0c0c-7470-4eb6-b6d5-b84b3444bf8a?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1591,7 +1591,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:25:11 GMT
+ - Thu, 01 Apr 2021 08:42:23 GMT
expires:
- '-1'
pragma:
@@ -1608,7 +1608,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b0fe0e6b-8168-4406-8a6b-4efc2afdebce
+ - 8376a0c5-c31f-4e98-9088-fae8ee3fad78
status:
code: 200
message: OK
@@ -1627,9 +1627,9 @@ interactions:
- -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fc2c0bd2-54de-4a83-aaaf-f37c03f3f7fa?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3deb0c0c-7470-4eb6-b6d5-b84b3444bf8a?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1641,7 +1641,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:25:31 GMT
+ - Thu, 01 Apr 2021 08:42:43 GMT
expires:
- '-1'
pragma:
@@ -1658,7 +1658,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c0e141ff-64fb-4cbd-a8ad-aa06270c01e9
+ - b5598535-1d0b-4555-a160-2a23cf78aab1
status:
code: 200
message: OK
@@ -1677,9 +1677,9 @@ interactions:
- -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fc2c0bd2-54de-4a83-aaaf-f37c03f3f7fa?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3deb0c0c-7470-4eb6-b6d5-b84b3444bf8a?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1691,7 +1691,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:26:11 GMT
+ - Thu, 01 Apr 2021 08:43:24 GMT
expires:
- '-1'
pragma:
@@ -1708,7 +1708,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1a4ea308-d00f-471d-aee2-3b180c65c06d
+ - 838289db-9227-4314-8fff-192c26b3023d
status:
code: 200
message: OK
@@ -1727,9 +1727,9 @@ interactions:
- -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fc2c0bd2-54de-4a83-aaaf-f37c03f3f7fa?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3deb0c0c-7470-4eb6-b6d5-b84b3444bf8a?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -1741,7 +1741,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:27:32 GMT
+ - Thu, 01 Apr 2021 08:44:44 GMT
expires:
- '-1'
pragma:
@@ -1758,7 +1758,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 34830510-9089-468a-bba1-19d4d01ef2b9
+ - 7c95827a-6187-4b33-a65f-649737eeb4d8
status:
code: 200
message: OK
@@ -1777,20 +1777,20 @@ interactions:
- -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"cb5f0799-d76d-4bec-af70-87e8be025b45\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"d5377293-ad94-42b1-bcf6-f14813ea6eb2\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"2bbe705e-aace-427f-a30d-b0096ea3f01c\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"cb5f0799-d76d-4bec-af70-87e8be025b45\\\"\",\r\n
+ \ \"etag\": \"W/\\\"d5377293-ad94-42b1-bcf6-f14813ea6eb2\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1819,7 +1819,7 @@ interactions:
[\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"40.78.13.140\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
@@ -1829,7 +1829,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:27:33 GMT
+ - Thu, 01 Apr 2021 08:44:45 GMT
expires:
- '-1'
pragma:
@@ -1846,7 +1846,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 21fe4379-726d-460d-acf9-74285ef72b3b
+ - 8b1e2b34-a830-4b9b-82d8-b8a0c5faa882
status:
code: 200
message: OK
@@ -1864,20 +1864,20 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"cb5f0799-d76d-4bec-af70-87e8be025b45\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"d5377293-ad94-42b1-bcf6-f14813ea6eb2\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"2bbe705e-aace-427f-a30d-b0096ea3f01c\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"cb5f0799-d76d-4bec-af70-87e8be025b45\\\"\",\r\n
+ \ \"etag\": \"W/\\\"d5377293-ad94-42b1-bcf6-f14813ea6eb2\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1906,7 +1906,7 @@ interactions:
[\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"40.78.13.140\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
@@ -1916,7 +1916,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:27:34 GMT
+ - Thu, 01 Apr 2021 08:44:48 GMT
expires:
- '-1'
pragma:
@@ -1933,7 +1933,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a52a5bdd-56e9-470f-aaac-ef60c208a833
+ - 2e42c13f-5e56-417e-971f-e092892e1e12
status:
code: 200
message: OK
@@ -1951,20 +1951,20 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"cb5f0799-d76d-4bec-af70-87e8be025b45\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"d5377293-ad94-42b1-bcf6-f14813ea6eb2\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"2bbe705e-aace-427f-a30d-b0096ea3f01c\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"cb5f0799-d76d-4bec-af70-87e8be025b45\\\"\",\r\n
+ \ \"etag\": \"W/\\\"d5377293-ad94-42b1-bcf6-f14813ea6eb2\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1993,7 +1993,7 @@ interactions:
[\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"40.78.13.140\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
@@ -2003,7 +2003,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:27:36 GMT
+ - Thu, 01 Apr 2021 08:44:51 GMT
expires:
- '-1'
pragma:
@@ -2020,7 +2020,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9c6ee9c3-73da-4616-9f19-4be9fa405630
+ - ffeaf57a-819b-4bb0-869c-4d4421743379
status:
code: 200
message: OK
@@ -2055,20 +2055,20 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"2c2076f4-c1a1-4799-9151-a07a6bb4515c\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"9350b2b4-dbd3-4e79-baf4-99d2ae6f0b3b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"2bbe705e-aace-427f-a30d-b0096ea3f01c\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"2c2076f4-c1a1-4799-9151-a07a6bb4515c\\\"\",\r\n
+ \ \"etag\": \"W/\\\"9350b2b4-dbd3-4e79-baf4-99d2ae6f0b3b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2091,11 +2091,11 @@ interactions:
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"40.78.13.140\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/60af378e-c5c1-4a62-9ac4-9133bc06f2d8?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/caf96a7d-360e-4563-a989-6e0029f2b997?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -2103,7 +2103,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:27:39 GMT
+ - Thu, 01 Apr 2021 08:44:53 GMT
expires:
- '-1'
pragma:
@@ -2120,9 +2120,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 77f5c031-daa5-4cd2-8891-ae5abcc58a1c
+ - 1bfd05fa-2fd7-4bda-b2ef-62bef08232bb
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1198'
status:
code: 200
message: OK
@@ -2140,9 +2140,9 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/60af378e-c5c1-4a62-9ac4-9133bc06f2d8?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/caf96a7d-360e-4563-a989-6e0029f2b997?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2154,7 +2154,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:27:49 GMT
+ - Thu, 01 Apr 2021 08:45:03 GMT
expires:
- '-1'
pragma:
@@ -2171,7 +2171,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 523827f2-77d4-4500-9608-c14e1dc0aaf5
+ - a96e83af-8e55-4fe7-8e85-3be805f5696b
status:
code: 200
message: OK
@@ -2189,9 +2189,9 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/60af378e-c5c1-4a62-9ac4-9133bc06f2d8?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/caf96a7d-360e-4563-a989-6e0029f2b997?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2203,7 +2203,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:28:09 GMT
+ - Thu, 01 Apr 2021 08:45:23 GMT
expires:
- '-1'
pragma:
@@ -2220,7 +2220,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - dce39980-af61-44b5-9089-0bad37f427de
+ - 3c8b76bf-2cbc-4f08-83ef-28825048dcba
status:
code: 200
message: OK
@@ -2238,9 +2238,9 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/60af378e-c5c1-4a62-9ac4-9133bc06f2d8?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/caf96a7d-360e-4563-a989-6e0029f2b997?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2252,7 +2252,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:28:49 GMT
+ - Thu, 01 Apr 2021 08:46:04 GMT
expires:
- '-1'
pragma:
@@ -2269,7 +2269,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 32b762b0-7241-4368-9687-4a882fdc4fea
+ - 73cbf599-50c5-4a18-8497-1eaba3b8eda7
status:
code: 200
message: OK
@@ -2287,9 +2287,9 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/60af378e-c5c1-4a62-9ac4-9133bc06f2d8?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/caf96a7d-360e-4563-a989-6e0029f2b997?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -2301,7 +2301,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:30:10 GMT
+ - Thu, 01 Apr 2021 08:47:24 GMT
expires:
- '-1'
pragma:
@@ -2318,7 +2318,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e54d3342-6ff3-47d6-a2e0-c6748d49ca52
+ - a396cb44-0c57-4279-a694-f5d0228417ed
status:
code: 200
message: OK
@@ -2336,20 +2336,20 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"b1aa204d-d615-4d97-8bb4-ca82d990b8ad\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"d738ced3-dba8-476c-b5f0-6b01b6b2de48\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"2bbe705e-aace-427f-a30d-b0096ea3f01c\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"b1aa204d-d615-4d97-8bb4-ca82d990b8ad\\\"\",\r\n
+ \ \"etag\": \"W/\\\"d738ced3-dba8-476c-b5f0-6b01b6b2de48\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2374,7 +2374,7 @@ interactions:
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"40.78.13.140\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
@@ -2384,7 +2384,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:30:12 GMT
+ - Thu, 01 Apr 2021 08:47:26 GMT
expires:
- '-1'
pragma:
@@ -2401,7 +2401,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - bf340938-2129-499b-aa8d-c6d308ef4288
+ - 46039f9d-8603-421b-8392-e6e51bbe4097
status:
code: 200
message: OK
@@ -2419,20 +2419,20 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"b1aa204d-d615-4d97-8bb4-ca82d990b8ad\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"d738ced3-dba8-476c-b5f0-6b01b6b2de48\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"2bbe705e-aace-427f-a30d-b0096ea3f01c\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"b1aa204d-d615-4d97-8bb4-ca82d990b8ad\\\"\",\r\n
+ \ \"etag\": \"W/\\\"d738ced3-dba8-476c-b5f0-6b01b6b2de48\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2457,7 +2457,7 @@ interactions:
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"40.78.13.140\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
@@ -2467,7 +2467,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:30:14 GMT
+ - Thu, 01 Apr 2021 08:47:28 GMT
expires:
- '-1'
pragma:
@@ -2484,7 +2484,109 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 2c0019da-6db8-4494-b49e-1e38bb855d4c
+ - 71cafc13-6c2a-4e5b-8ba7-9d6df78c5982
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway vpn-client show-health
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/getVpnClientConnectionHealth?api-version=2020-11-01
+ response:
+ body:
+ string: 'null'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 08:47:28 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/d737f105-6d12-4e88-9291-3a88afbcf644?api-version=2020-11-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - ec6f85b1-1360-45bd-b2e7-d5896ca3c5c2
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway vpn-client show-health
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/d737f105-6d12-4e88-9291-3a88afbcf644?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"value\": []\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '19'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 08:47:40 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/d737f105-6d12-4e88-9291-3a88afbcf644?api-version=2020-11-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - ec6f85b1-1360-45bd-b2e7-d5896ca3c5c2
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 86a6b5c033a..b47138da99e 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
@@ -3597,6 +3597,7 @@ def test_network_vnet_gateway_ipsec(self, resource_group):
self.cmd('network vnet-gateway ipsec-policy list -g {rg} --gateway-name {gw}')
self.cmd('network vnet-gateway ipsec-policy clear -g {rg} --gateway-name {gw}')
self.cmd('network vnet-gateway ipsec-policy list -g {rg} --gateway-name {gw}')
+ self.cmd('network vnet-gateway vpn-client show-health -g {rg} -n {gw}')
class NetworkVnetGatewayMultiAuth(ScenarioTest):
From e922b852a94336f7c44cd769670e18dd4baf4ed5 Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Tue, 13 Apr 2021 17:15:03 +0800
Subject: [PATCH 04/19] add commands 'network vnet-gateway vpn-client
ipsec-policy show' and 'network vnet-gateway vpn-client ipsec-policy set'
---
.../cli/command_modules/network/_help.py | 24 +++++++++++++++++++
.../cli/command_modules/network/_params.py | 2 +-
.../cli/command_modules/network/commands.py | 6 +++++
.../cli/command_modules/network/custom.py | 16 +++++++++++++
4 files changed, 47 insertions(+), 1 deletion(-)
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 854e361fc49..fa373377304 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_help.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_help.py
@@ -5696,6 +5696,30 @@
text: az network vnet-gateway vpn-client show-health -g MyResourceGroup -n MyVnetGateway
"""
+helps['network vnet-gateway vpn-client ipsec-policy'] = """
+type: group
+short-summary: Manage the VPN client connection ipsec-policy for P2S client connection of the virtual network gateway.
+"""
+
+helps['network vnet-gateway vpn-client ipsec-policy show'] = """
+type: command
+short-summary: Get the VPN client connection ipsec policy per P2S client connection of the virtual network gateway.
+examples:
+ - name: Get the VPN client connection ipsec policy per P2S client connection of the virtual network gateway.
+ text: az network vnet-gateway vpn-client ipsec-policy show -g MyResourceGroup -n MyVnetGateway
+"""
+
+helps['network vnet-gateway vpn-client ipsec-policy set'] = """
+type: command
+short-summary: Set the VPN client connection ipsec policy per P2S client connection of the virtual network gateway.
+examples:
+ - name: Set the VPN client connection ipsec policy per P2S client connection of the virtual network gateway.
+ text: |-
+ az network vnet-gateway vpn-client ipsec-policy set -g MyResourceGroup -n MyVnetGateway \
+ --dh-group DHGroup14 --ike-encryption AES256 --ike-integrity SHA384 --ipsec-encryption DES3 \
+ --ipsec-integrity GCMAES256 --pfs-group PFS2048 --sa-lifetime 27000 --sa-max-size 102400000
+"""
+
helps['network vnet-gateway wait'] = """
type: command
short-summary: Place the CLI in a waiting state until a condition of the virtual network gateway is met.
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 5c332583c6c..f48bd586503 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_params.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_params.py
@@ -2037,7 +2037,7 @@ def load_arguments(self, _):
'ipsec_integrity': 'IpsecIntegrity',
'pfs_group': 'PfsGroup'
}
- for scope in ['vpn-connection', 'vnet-gateway']:
+ for scope in ['vpn-connection', 'vnet-gateway', 'vnet-gateway vpn-client']:
with self.argument_context('network {} ipsec-policy'.format(scope)) as c:
for dest, model_name in param_map.items():
model = self.get_models(model_name)
diff --git a/src/azure-cli/azure/cli/command_modules/network/commands.py b/src/azure-cli/azure/cli/command_modules/network/commands.py
index 5be13c84428..36b058a103a 100644
--- a/src/azure-cli/azure/cli/command_modules/network/commands.py
+++ b/src/azure-cli/azure/cli/command_modules/network/commands.py
@@ -1340,6 +1340,12 @@ def _make_singular(value):
g.command('show-url', 'begin_get_vpn_profile_package_url', min_api='2017-08-01')
g.command('show-health', 'begin_get_vpnclient_connection_health', is_preview=True, min_api='2019-04-01')
+ with self.command_group('network vnet-gateway vpn-client ipsec-policy', network_vgw_sdk, client_factory=cf_virtual_network_gateways, is_preview=True, min_api='2018-02-01') as g:
+ g.custom_command('set', 'set_vpn_client_ipsec_policy', supports_no_wait=True)
+ g.command('show', 'begin_get_vpnclient_ipsec_parameters')
+
+ # with self.command_group
+
with self.command_group('network vnet-gateway revoked-cert', network_vgw_sdk) as g:
g.custom_command('create', 'create_vnet_gateway_revoked_cert')
g.custom_command('delete', 'delete_vnet_gateway_revoked_cert')
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 da354a3c26b..94b9ae0ebf1 100644
--- a/src/azure-cli/azure/cli/command_modules/network/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/network/custom.py
@@ -6478,6 +6478,22 @@ def generate_vpn_client(cmd, client, resource_group_name, virtual_network_gatewa
# legacy implementation
return client.begin_generatevpnclientpackage(resource_group_name, virtual_network_gateway_name, params)
+def set_vpn_client_ipsec_policy(cmd, client, resource_group_name, virtual_network_gateway_name,
+ sa_life_time_seconds, sa_data_size_kilobytes,
+ ipsec_encryption, ipsec_integrity,
+ ike_encryption, ike_integrity, dh_group, pfs_group, no_wait=False):
+ VpnClientIPsecParameters = cmd.get_models('VpnClientIPsecParameters')
+ vpnclient_ipsec_params = VpnClientIPsecParameters(sa_life_time_seconds=sa_life_time_seconds,
+ sa_data_size_kilobytes=sa_data_size_kilobytes,
+ ipsec_encryption=ipsec_encryption,
+ ipsec_integrity=ipsec_integrity,
+ ike_encryption=ike_encryption,
+ ike_integrity=ike_integrity,
+ dh_group=dh_group,
+ pfs_group=pfs_group)
+ return sdk_no_wait(no_wait, client.begin_set_vpnclient_ipsec_parameters, resource_group_name,
+ virtual_network_gateway_name, vpnclient_ipsec_params)
+
def disconnect_vnet_gateway_vpn_connections(cmd, client, resource_group_name, virtual_network_gateway_name,
vpn_connection_ids, no_wait=False):
P2SVpnConnectionRequest = cmd.get_models('P2SVpnConnectionRequest')
From 0b33948be38ebe86e16ae4c88b249e96d203a77c Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Thu, 15 Apr 2021 11:27:50 +0800
Subject: [PATCH 05/19] add tests
---
.../cli/command_modules/network/_help.py | 21 +++++++++
.../cli/command_modules/network/_params.py | 7 +++
.../cli/command_modules/network/commands.py | 4 ++
.../cli/command_modules/network/custom.py | 16 +++++++
...t_network_vpn_gateway_package_capture.yaml | 37 +++++++++++++++
.../test-vpn-client-package-root-cert.cer | 18 ++++++++
.../tests/latest/test_network_commands.py | 46 +++++++++++++++++--
7 files changed, 146 insertions(+), 3 deletions(-)
create mode 100644 src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_package_capture.yaml
create mode 100644 src/azure-cli/azure/cli/command_modules/network/tests/latest/test-vpn-client-package-root-cert.cer
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 fa373377304..807b804ab53 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_help.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_help.py
@@ -5659,6 +5659,27 @@
crafted: true
"""
+helps['network vnet-gateway packet-capture'] = """
+type: group
+short-summary: Manage packet capture on a virtual network gateway.
+"""
+
+helps['network vnet-gateway packet-capture start'] = """
+type: command
+short-summary: Start packet capture on a virtual network gateway.
+examples:
+ - name: Start packet capture on a virtual network gateway.
+ text: az network vnet-gateway packet-capture start -g MyResourceGroup -n MyVnetGateway
+"""
+
+helps['network vnet-gateway packet-capture stop'] = """
+type: command
+short-summary: Stop packet capture on a virtual network gateway.
+examples:
+ - name: Stop packet capture on a virtual network gateway.
+ text: az network vnet-gateway packet-capture stop -g MyResourceGroup -n MyVnetGateway --sas-url https://myStorageAct.blob.azure.com/artifacts?st=2019-04-10T22%3A12Z&se=2019-04-11T09%3A12Z&sp=rl&sv=2018-03-28&sr=c&sig=0000000000
+"""
+
helps['network vnet-gateway vpn-client'] = """
type: group
short-summary: Download a VPN client configuration required to connect to Azure via point-to-site.
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 f48bd586503..94d18b2e4a1 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_params.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_params.py
@@ -1949,6 +1949,13 @@ def load_arguments(self, _):
with self.argument_context('network vnet-gateway revoked-cert create') as c:
c.argument('thumbprint', help='Certificate thumbprint.')
+ with self.argument_context('network vnet-gateway packet-capture start') as c:
+ c.argument('filter_data', options_list=['--filter'], help='Data filter.')
+
+ with self.argument_context('network vnet-gateway packet-capture stop') as c:
+ c.argument('sas_url', options_list=['--sas-url'],
+ help='The SAS url to be used for packet capture.')
+
with self.argument_context('network vnet-gateway vpn-client') as c:
c.argument('processor_architecture', help='Processor architecture of the target system.', arg_type=get_enum_type(ProcessorArchitecture))
c.argument('authentication_method', help='Method used to authenticate with the generated client.', arg_type=get_enum_type(AuthenticationMethod))
diff --git a/src/azure-cli/azure/cli/command_modules/network/commands.py b/src/azure-cli/azure/cli/command_modules/network/commands.py
index 36b058a103a..3fc96a7d939 100644
--- a/src/azure-cli/azure/cli/command_modules/network/commands.py
+++ b/src/azure-cli/azure/cli/command_modules/network/commands.py
@@ -1335,6 +1335,10 @@ def _make_singular(value):
g.command('list-learned-routes', 'begin_get_learned_routes', table_transformer=transform_vnet_gateway_routes_table)
g.custom_command('disconnect-vpn-connections', 'disconnect_vnet_gateway_vpn_connections', client_factory=cf_virtual_network_gateways, supports_no_wait=True, is_preview=True, min_api='2019-11-01')
+ with self.command_group('network vnet-gateway packet-capture', network_vgw_sdk, client_factory=cf_virtual_network_gateways, is_preview=True, min_api='2019-07-01') as g:
+ g.custom_command('start', 'start_vnet_gateway_package_capture', supports_no_wait=True)
+ g.custom_command('stop', 'stop_vnet_gateway_package_capture', supports_no_wait=True)
+
with self.command_group('network vnet-gateway vpn-client', network_vgw_sdk, client_factory=cf_virtual_network_gateways) as g:
g.custom_command('generate', 'generate_vpn_client')
g.command('show-url', 'begin_get_vpn_profile_package_url', min_api='2017-08-01')
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 94b9ae0ebf1..97521903372 100644
--- a/src/azure-cli/azure/cli/command_modules/network/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/network/custom.py
@@ -6463,6 +6463,22 @@ def update_vnet_gateway(cmd, instance, sku=None, vpn_type=None, tags=None,
return instance
+def start_vnet_gateway_package_capture(cmd, client, resource_group_name, virtual_network_gateway_name,
+ filter_data=None, no_wait=False):
+ VpnPacketCaptureStartParameters = cmd.get_models('VpnPacketCaptureStartParameters')
+ parameters = VpnPacketCaptureStartParameters(filter_data=filter_data)
+ return sdk_no_wait(no_wait, client.begin_start_packet_capture, resource_group_name,
+ virtual_network_gateway_name, parameters=parameters)
+
+
+def stop_vnet_gateway_package_capture(cmd, client, resource_group_name, virtual_network_gateway_name,
+ sas_url, no_wait=False):
+ VpnPacketCaptureStopParameters = cmd.get_models('VpnPacketCaptureStopParameters')
+ parameters = VpnPacketCaptureStopParameters(sas_url=sas_url)
+ return sdk_no_wait(no_wait, client.begin_stop_packet_capture, resource_group_name,
+ virtual_network_gateway_name, parameters=parameters)
+
+
def generate_vpn_client(cmd, client, resource_group_name, virtual_network_gateway_name, processor_architecture=None,
authentication_method=None, radius_server_auth_certificate=None, client_root_certificates=None,
use_legacy=False):
diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_package_capture.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_package_capture.yaml
new file mode 100644
index 00000000000..18b223156f2
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_package_capture.yaml
@@ -0,0 +1,37 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.22.0
+ x-ms-date:
+ - Thu, 15 Apr 2021 03:18:29 GMT
+ x-ms-version:
+ - '2018-11-09'
+ method: PUT
+ uri: https://clitestvpngw000002.blob.core.windows.net/vpngw?restype=container
+ response:
+ body:
+ string: "\uFEFFResourceNotFoundThe
+ specified resource does not exist.\nRequestId:d0d21695-401e-002d-4fa6-31d733000000\nTime:2021-04-15T03:18:32.6832723Z"
+ headers:
+ content-length:
+ - '223'
+ content-type:
+ - application/xml
+ date:
+ - Thu, 15 Apr 2021 03:18:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-error-code:
+ - ResourceNotFound
+ x-ms-version:
+ - '2018-11-09'
+ status:
+ code: 404
+ message: The specified resource does not exist.
+version: 1
diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test-vpn-client-package-root-cert.cer b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test-vpn-client-package-root-cert.cer
new file mode 100644
index 00000000000..7c8aab765c8
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test-vpn-client-package-root-cert.cer
@@ -0,0 +1,18 @@
+-----BEGIN CERTIFICATE-----
+MIIC5zCCAc+gAwIBAgIQLo4c0rMM7qpJZJfyJCxvEjANBgkqhkiG9w0BAQsFADAW
+MRQwEgYDVQQDDAtQMlNSb290Q2VydDAeFw0yMTA0MTQwMzQ3MTBaFw0yMjA0MTQw
+NDA3MTBaMBYxFDASBgNVBAMMC1AyU1Jvb3RDZXJ0MIIBIjANBgkqhkiG9w0BAQEF
+AAOCAQ8AMIIBCgKCAQEA++NQKhBfPnyuOjP98u2T1KqllNkRRUe83S+/JRV/R8np
+8Z+F67Dy6v2xF/b4ZT36fbTf3n/fOxATV2/d5/5TYKUkorYW7M1PxmjspgQKBy58
+m6ieY1HRAuM7KfUBKm+iKm06CwCqQaFSecw4fUIgv+LhDai9CcohIqP0aItmCYxH
+Be0X5bw+sZYjHAYCHptmreLRwljH2mRhT3cmGX8QQs0HHFm+YnNd8StPnj+Ta7JQ
+uJblBewaWwL3K0KnbdGlRjHIGt1DBhVdeEd8UBQobnXNUnX3uPTXa1dZeGrNcq0t
+RyEtqJ1BuxK2O4gZK8Gy3Tk7oHIAupBVYvd00nJRQQIDAQABozEwLzAOBgNVHQ8B
+Af8EBAMCAgQwHQYDVR0OBBYEFPqxn56osiUdlo1Jmfdz1h5hHQWjMA0GCSqGSIb3
+DQEBCwUAA4IBAQA3fqaTmpCMLmQoYC4neuz+7QkneiDDoCHM6ToUv49LdCvOnCfI
+xrvnrDRZGUthlHBImhvpUvzgktr2N5OuCNIl/creyacAqBEo/i8z0QVhIcGCHgcp
+BE7jwYYR5qEL8ej18ZjUGjwpJL9qOf7vBC/8/Wm1NQxLKqB6XJXeoHTHUS2+7Fg6
+QQJMB9fuQEdNcunbiPV8UOkRnsSHxuzmOTsx+46/fSzy9DmUCIFLyKPgoLFmp+Xq
+UE/wlK0Ac1W2wZiw4netAfeRFc+ABRFNuxIi+gaLmv+6nM15lmyrrdLjH+szEInh
+WvEyiZ2MW0ebW60HfBJHRz5kQR5H4dYKkjhN
+-----END CERTIFICATE-----
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 b47138da99e..e1bf170ef18 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
@@ -4216,28 +4216,68 @@ def test_network_vpn_gateway_disconnect_connects(self, resource_group):
'--vnet-gateway2 {gw1} --vnet-gateway1 {gw2}')
self.cmd('network vnet-gateway disconnect-vpn-connections -g {rg} -n {gw1} --vpn-connections {conn12}')
+ @ResourceGroupPreparer(name_prefix='cli_test_vpn_gateway_package_capture', location='westus')
+ @StorageAccountPreparer(name_prefix='clitestvpngw', location='westus')
+ def test_network_vpn_gateway_package_capture(self, resource_group, storage_account):
+ from datetime import datetime, timedelta
+ self.kwargs.update({
+ 'vnet1': 'myvnet1',
+ 'gw1': 'gateway1',
+ 'gw1_sku': 'Standard',
+ 'ip1': 'pubip1',
+ 'storage_account': storage_account,
+ 'ctn': 'vpngw',
+ 'expiry': (datetime.utcnow() + timedelta(hours=3)).strftime('%Y-%m-%dT%H:%MZ')
+ })
+
+ self.cmd('storage container create -n {ctn} --account-name {storage_account}')
+ sas = self.cmd(
+ 'storage blob generate-sas -n {src} --account-name {storage_account} -c {ctn} --permissions acrwd --expiry {expiry} -otsv').output.strip()
+ self.kwargs['sas_url'] = 'https://{}.blob.azure.com/{}?{}'.format(self.kwargs['storage_account'],
+ self.kwargs['ctn'], sas)
+
+ self.cmd('network public-ip create -n {ip1} -g {rg}')
+ self.cmd('network vnet create -g {rg} -n {vnet1} --subnet-name GatewaySubnet --address-prefix 10.0.0.0/16 --subnet-prefix 10.0.0.0/24')
+ self.cmd('network vnet-gateway create -g {rg} -n {gw1} --vnet {vnet1} --public-ip-address {ip1} --sku {gw1_sku}')
+ output = self.cmd('network vnet-gateway packet-capture start -g {rg} -n {gw1}').output.strip()
+ self.assertTrue('Successful' in output, 'Expected Successful in output.\nActual: {}'.format(output))
+ with self.assertRaisesRegexp(HttpResponseError, 'The response did not contain any data'):
+ self.cmd('network vnet-gateway packet-capture stop -g {rg} -n {gw1} --sas-url {sas_url}')
+
+
class NetworkVpnClientPackageScenarioTest(LiveScenarioTest):
@ResourceGroupPreparer('cli_test_vpn_client_package')
def test_vpn_client_package(self, resource_group):
-
self.kwargs.update({
'vnet': 'vnet1',
'public_ip': 'pip1',
'gateway_prefix': '100.1.1.0/24',
'gateway': 'vgw1',
+ 'gw_sku': 'Standard',
'cert': 'cert1',
- 'cert_path': os.path.join(TEST_DIR, 'test-root-cert.cer')
+ 'cert_path': os.path.join(TEST_DIR, 'test-vpn-client-package-root-cert.cer')
})
self.cmd('network vnet create -g {rg} -n {vnet} --subnet-name GatewaySubnet')
self.cmd('network public-ip create -g {rg} -n {public_ip}')
- self.cmd('network vnet-gateway create -g {rg} -n {gateway} --address-prefix {gateway_prefix} --vnet {vnet} --public-ip-address {public_ip}')
+ self.cmd('network vnet-gateway create -g {rg} -n {gateway} --address-prefix {gateway_prefix} --vnet {vnet} --public-ip-address {public_ip} --sku {gw_sku}')
self.cmd('network vnet-gateway root-cert create -g {rg} --gateway-name {gateway} -n {cert} --public-cert-data "{cert_path}"')
output = self.cmd('network vnet-gateway vpn-client generate -g {rg} -n {gateway}').get_output_in_json()
self.assertTrue('.zip' in output, 'Expected ZIP file in output.\nActual: {}'.format(str(output)))
output = self.cmd('network vnet-gateway vpn-client show-url -g {rg} -n {gateway}').get_output_in_json()
self.assertTrue('.zip' in output, 'Expected ZIP file in output.\nActual: {}'.format(str(output)))
+ self.cmd('network vnet-gateway vpn-client ipsec-policy set -g {rg} -n {gateway} --ike-encryption AES256 --ike-integrity SHA384 --dh-group DHGroup24 --ipsec-encryption GCMAES256 --ipsec-integrity GCMAES256 --pfs-group PFS24 --sa-lifetime 7200 --sa-max-size 2048')
+ self.cmd('network vnet-gateway vpn-client ipsec-policy show -g {rg} -n {gateway}', checks=[
+ self.check('dhGroup', 'DHGroup24'),
+ self.check('ikeEncryption', 'AES256'),
+ self.check('ikeIntegrity', 'SHA384'),
+ self.check('ipsecEncryption', 'GCMAES256'),
+ self.check('ipsecIntegrity', 'GCMAES256'),
+ self.check('pfsGroup', 'PFS24'),
+ self.check('saDataSizeKilobytes', 2048),
+ self.check('saLifeTimeSeconds', 7200),
+ ])
class NetworkTrafficManagerScenarioTest(ScenarioTest):
From 36366a4d9cdda87dcb4d211119c87f03064db891 Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Thu, 15 Apr 2021 14:01:44 +0800
Subject: [PATCH 06/19] add test
---
...t_network_vpn_gateway_package_capture.yaml | 2755 ++++++++++++++++-
.../tests/latest/test_network_commands.py | 10 +-
2 files changed, 2749 insertions(+), 16 deletions(-)
diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_package_capture.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_package_capture.yaml
index 18b223156f2..24e895abb3a 100644
--- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_package_capture.yaml
+++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_package_capture.yaml
@@ -1,4 +1,105 @@
interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage container create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --account-name --name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2021-01-01
+ response:
+ body:
+ string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-groupbvy56l4cm5xvclfem5lifl725op2rsc3/providers/Microsoft.Storage/storageAccounts/armbuilddemo5ygtzdg6","name":"armbuilddemo5ygtzdg6","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T09:33:57.1682665Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T09:33:57.1682665Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T09:33:57.0432620Z","primaryEndpoints":{"blob":"https://armbuilddemo5ygtzdg6.blob.core.windows.net/","queue":"https://armbuilddemo5ygtzdg6.queue.core.windows.net/","table":"https://armbuilddemo5ygtzdg6.table.core.windows.net/","file":"https://armbuilddemo5ygtzdg6.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-groupq7pgu7g74kinmn5rzzthu6dosn6x3bow/providers/Microsoft.Storage/storageAccounts/armbuilddemokch5pqfy","name":"armbuilddemokch5pqfy","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:14:10.5632137Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:14:10.5632137Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T09:14:10.4538140Z","primaryEndpoints":{"blob":"https://armbuilddemokch5pqfy.blob.core.windows.net/","queue":"https://armbuilddemokch5pqfy.queue.core.windows.net/","table":"https://armbuilddemokch5pqfy.table.core.windows.net/","file":"https://armbuilddemokch5pqfy.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-group3yqjvwdwmnx2u5yrciutjqdcmvbpm5xe/providers/Microsoft.Storage/storageAccounts/armbuilddemovtxzzcjo","name":"armbuilddemovtxzzcjo","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T08:17:26.3492168Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T08:17:26.3492168Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T08:17:26.2398063Z","primaryEndpoints":{"blob":"https://armbuilddemovtxzzcjo.blob.core.windows.net/","queue":"https://armbuilddemovtxzzcjo.queue.core.windows.net/","table":"https://armbuilddemovtxzzcjo.table.core.windows.net/","file":"https://armbuilddemovtxzzcjo.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-beta/providers/Microsoft.Storage/storageAccounts/azureclibetarelease","name":"azureclibetarelease","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-11T10:32:24.7099044Z","primaryEndpoints":{"dfs":"https://azureclibetarelease.dfs.core.windows.net/","web":"https://azureclibetarelease.z13.web.core.windows.net/","blob":"https://azureclibetarelease.blob.core.windows.net/","queue":"https://azureclibetarelease.queue.core.windows.net/","table":"https://azureclibetarelease.table.core.windows.net/","file":"https://azureclibetarelease.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azureclibetarelease-secondary.dfs.core.windows.net/","web":"https://azureclibetarelease-secondary.z13.web.core.windows.net/","blob":"https://azureclibetarelease-secondary.blob.core.windows.net/","queue":"https://azureclibetarelease-secondary.queue.core.windows.net/","table":"https://azureclibetarelease-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_state_modb53dudzecixoz4yulrklowkbwbckllykr746enpdi34nwuc6irkd5k/providers/Microsoft.Storage/storageAccounts/clistorage3knyi","name":"clistorage3knyi","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"firsttag":"1","secondtag":"2","thirdtag":""},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T04:25:50.7837511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T04:25:50.7837511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T04:25:50.6587502Z","primaryEndpoints":{"blob":"https://clistorage3knyi.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_state_modjdjpnmmhsg5ksljahrwrnsp5ibudhksggzzbmp4pjqmc47pesomh3r/providers/Microsoft.Storage/storageAccounts/clistoragejc6le","name":"clistoragejc6le","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"firsttag":"1","secondtag":"2","thirdtag":""},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:36:13.0895897Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:36:13.0895897Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T13:36:12.9801870Z","primaryEndpoints":{"blob":"https://clistoragejc6le.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwufp5tbusewuzx4ai5w3hswshznjqdnj5gfaxtcmvlsnqukjool4eav3sbh7vvbbw/providers/Microsoft.Storage/storageAccounts/clitest6r2rsw7xdj4unms6t","name":"clitest6r2rsw7xdj4unms6t","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T07:08:25.3503244Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T07:08:25.3503244Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T07:08:25.2409298Z","primaryEndpoints":{"blob":"https://clitest6r2rsw7xdj4unms6t.blob.core.windows.net/","queue":"https://clitest6r2rsw7xdj4unms6t.queue.core.windows.net/","table":"https://clitest6r2rsw7xdj4unms6t.table.core.windows.net/","file":"https://clitest6r2rsw7xdj4unms6t.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestresult/providers/Microsoft.Storage/storageAccounts/clitestresultstac","name":"clitestresultstac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-15T06:20:52.6907255Z","primaryEndpoints":{"dfs":"https://clitestresultstac.dfs.core.windows.net/","web":"https://clitestresultstac.z13.web.core.windows.net/","blob":"https://clitestresultstac.blob.core.windows.net/","queue":"https://clitestresultstac.queue.core.windows.net/","table":"https://clitestresultstac.table.core.windows.net/","file":"https://clitestresultstac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestresultstac-secondary.dfs.core.windows.net/","web":"https://clitestresultstac-secondary.z13.web.core.windows.net/","blob":"https://clitestresultstac-secondary.blob.core.windows.net/","queue":"https://clitestresultstac-secondary.queue.core.windows.net/","table":"https://clitestresultstac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-svohdzm0/providers/Microsoft.Storage/storageAccounts/clusterg7scd","name":"clusterg7scd","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:26.3565153Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:26.3565153Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T08:49:26.2471005Z","primaryEndpoints":{"blob":"https://clusterg7scd.blob.core.windows.net/","queue":"https://clusterg7scd.queue.core.windows.net/","table":"https://clusterg7scd.table.core.windows.net/","file":"https://clusterg7scd.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-ut6bercg/providers/Microsoft.Storage/storageAccounts/clusterlsklq","name":"clusterlsklq","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:24.9971070Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:24.9971070Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T08:49:24.9033800Z","primaryEndpoints":{"blob":"https://clusterlsklq.blob.core.windows.net/","queue":"https://clusterlsklq.queue.core.windows.net/","table":"https://clusterlsklq.table.core.windows.net/","file":"https://clusterlsklq.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.Storage/storageAccounts/fystac","name":"fystac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T03:10:13.4426715Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T03:10:13.4426715Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-08T03:10:13.3645539Z","primaryEndpoints":{"dfs":"https://fystac.dfs.core.windows.net/","web":"https://fystac.z13.web.core.windows.net/","blob":"https://fystac.blob.core.windows.net/","queue":"https://fystac.queue.core.windows.net/","table":"https://fystac.table.core.windows.net/","file":"https://fystac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fystac-secondary.dfs.core.windows.net/","web":"https://fystac-secondary.z13.web.core.windows.net/","blob":"https://fystac-secondary.blob.core.windows.net/","queue":"https://fystac-secondary.queue.core.windows.net/","table":"https://fystac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-svohdzm0/providers/Microsoft.Storage/storageAccounts/imageregistryarofw6nwzts","name":"imageregistryarofw6nwzts","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:31.6710346Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:31.6710346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T09:05:31.5616526Z","primaryEndpoints":{"blob":"https://imageregistryarofw6nwzts.blob.core.windows.net/","queue":"https://imageregistryarofw6nwzts.queue.core.windows.net/","table":"https://imageregistryarofw6nwzts.table.core.windows.net/","file":"https://imageregistryarofw6nwzts.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-ut6bercg/providers/Microsoft.Storage/storageAccounts/imageregistryarov6yf6vcw","name":"imageregistryarov6yf6vcw","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:11.4679262Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:11.4679262Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T09:05:11.3585865Z","primaryEndpoints":{"blob":"https://imageregistryarov6yf6vcw.blob.core.windows.net/","queue":"https://imageregistryarov6yf6vcw.queue.core.windows.net/","table":"https://imageregistryarov6yf6vcw.table.core.windows.net/","file":"https://imageregistryarov6yf6vcw.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-weidxu/providers/Microsoft.Storage/storageAccounts/lcok2weidxu","name":"lcok2weidxu","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T03:19:18.1561890Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T03:19:18.1561890Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T03:19:18.0468159Z","primaryEndpoints":{"dfs":"https://lcok2weidxu.dfs.core.windows.net/","web":"https://lcok2weidxu.z13.web.core.windows.net/","blob":"https://lcok2weidxu.blob.core.windows.net/","queue":"https://lcok2weidxu.queue.core.windows.net/","table":"https://lcok2weidxu.table.core.windows.net/","file":"https://lcok2weidxu.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-14T07:23:08.7502552Z","primaryEndpoints":{"dfs":"https://portal2clistorage.dfs.core.windows.net/","web":"https://portal2clistorage.z13.web.core.windows.net/","blob":"https://portal2clistorage.blob.core.windows.net/","queue":"https://portal2clistorage.queue.core.windows.net/","table":"https://portal2clistorage.table.core.windows.net/","file":"https://portal2clistorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://portal2clistorage-secondary.dfs.core.windows.net/","web":"https://portal2clistorage-secondary.z13.web.core.windows.net/","blob":"https://portal2clistorage-secondary.blob.core.windows.net/","queue":"https://portal2clistorage-secondary.queue.core.windows.net/","table":"https://portal2clistorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwenadls","name":"qianwenadls","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T10:11:06.0357634Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T10:11:06.0357634Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-01T10:11:05.9576622Z","primaryEndpoints":{"dfs":"https://qianwenadls.dfs.core.windows.net/","web":"https://qianwenadls.z13.web.core.windows.net/","blob":"https://qianwenadls.blob.core.windows.net/","queue":"https://qianwenadls.queue.core.windows.net/","table":"https://qianwenadls.table.core.windows.net/","file":"https://qianwenadls.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwenadls-secondary.dfs.core.windows.net/","web":"https://qianwenadls-secondary.z13.web.core.windows.net/","blob":"https://qianwenadls-secondary.blob.core.windows.net/","queue":"https://qianwenadls-secondary.queue.core.windows.net/","table":"https://qianwenadls-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwendev","name":"qianwendev","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Network/virtualNetworks/QIAN/subnets/default","action":"Allow","state":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Network/virtualNetworks/qianwendev/subnets/default","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"23.45.1.0/24","action":"Allow"},{"value":"23.45.1.1/24","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T03:29:28.0084761Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T03:29:28.0084761Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-12T03:29:27.9459854Z","primaryEndpoints":{"dfs":"https://qianwendev.dfs.core.windows.net/","web":"https://qianwendev.z13.web.core.windows.net/","blob":"https://qianwendev.blob.core.windows.net/","queue":"https://qianwendev.queue.core.windows.net/","table":"https://qianwendev.table.core.windows.net/","file":"https://qianwendev.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwendev-secondary.dfs.core.windows.net/","web":"https://qianwendev-secondary.z13.web.core.windows.net/","blob":"https://qianwendev-secondary.blob.core.windows.net/","queue":"https://qianwendev-secondary.queue.core.windows.net/","table":"https://qianwendev-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwenhpctarget","name":"qianwenhpctarget","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T07:09:20.3073299Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T07:09:20.3073299Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-06T07:09:20.2291899Z","primaryEndpoints":{"dfs":"https://qianwenhpctarget.dfs.core.windows.net/","web":"https://qianwenhpctarget.z13.web.core.windows.net/","blob":"https://qianwenhpctarget.blob.core.windows.net/","queue":"https://qianwenhpctarget.queue.core.windows.net/","table":"https://qianwenhpctarget.table.core.windows.net/","file":"https://qianwenhpctarget.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwenhpctarget-secondary.dfs.core.windows.net/","web":"https://qianwenhpctarget-secondary.z13.web.core.windows.net/","blob":"https://qianwenhpctarget-secondary.blob.core.windows.net/","queue":"https://qianwenhpctarget-secondary.queue.core.windows.net/","table":"https://qianwenhpctarget-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-yueshi/providers/Microsoft.Storage/storageAccounts/yueshi4debug","name":"yueshi4debug","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-14T09:43:28.2246331Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-14T09:43:28.2246331Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-14T09:43:28.1308789Z","primaryEndpoints":{"dfs":"https://yueshi4debug.dfs.core.windows.net/","web":"https://yueshi4debug.z13.web.core.windows.net/","blob":"https://yueshi4debug.blob.core.windows.net/","queue":"https://yueshi4debug.queue.core.windows.net/","table":"https://yueshi4debug.table.core.windows.net/","file":"https://yueshi4debug.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yueshi4debug-secondary.dfs.core.windows.net/","web":"https://yueshi4debug-secondary.z13.web.core.windows.net/","blob":"https://yueshi4debug-secondary.blob.core.windows.net/","queue":"https://yueshi4debug-secondary.queue.core.windows.net/","table":"https://yueshi4debug-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-4xdsq/providers/Microsoft.Storage/storageAccounts/hdicliy5u7daegwvwo5fd4xv","name":"hdicliy5u7daegwvwo5fd4xv","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T09:42:58.1150743Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T09:42:58.1150743Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T09:42:58.0057516Z","primaryEndpoints":{"blob":"https://hdicliy5u7daegwvwo5fd4xv.blob.core.windows.net/","queue":"https://hdicliy5u7daegwvwo5fd4xv.queue.core.windows.net/","table":"https://hdicliy5u7daegwvwo5fd4xv.table.core.windows.net/","file":"https://hdicliy5u7daegwvwo5fd4xv.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-live-test-rg/providers/Microsoft.Storage/storageAccounts/advisortestsa","name":"advisortestsa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T02:39:47.2953520Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T02:39:47.2953520Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T02:39:47.1860196Z","primaryEndpoints":{"dfs":"https://advisortestsa.dfs.core.windows.net/","web":"https://advisortestsa.z22.web.core.windows.net/","blob":"https://advisortestsa.blob.core.windows.net/","queue":"https://advisortestsa.queue.core.windows.net/","table":"https://advisortestsa.table.core.windows.net/","file":"https://advisortestsa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://advisortestsa-secondary.dfs.core.windows.net/","web":"https://advisortestsa-secondary.z22.web.core.windows.net/","blob":"https://advisortestsa-secondary.blob.core.windows.net/","queue":"https://advisortestsa-secondary.queue.core.windows.net/","table":"https://advisortestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azextensionedge","name":"azextensionedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T08:51:57.6947156Z","primaryEndpoints":{"dfs":"https://azextensionedge.dfs.core.windows.net/","web":"https://azextensionedge.z22.web.core.windows.net/","blob":"https://azextensionedge.blob.core.windows.net/","queue":"https://azextensionedge.queue.core.windows.net/","table":"https://azextensionedge.table.core.windows.net/","file":"https://azextensionedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azextensionedge-secondary.dfs.core.windows.net/","web":"https://azextensionedge-secondary.z22.web.core.windows.net/","blob":"https://azextensionedge-secondary.blob.core.windows.net/","queue":"https://azextensionedge-secondary.queue.core.windows.net/","table":"https://azextensionedge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azurecliedge","name":"azurecliedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-13T08:41:36.2389304Z","primaryEndpoints":{"dfs":"https://azurecliedge.dfs.core.windows.net/","web":"https://azurecliedge.z22.web.core.windows.net/","blob":"https://azurecliedge.blob.core.windows.net/","queue":"https://azurecliedge.queue.core.windows.net/","table":"https://azurecliedge.table.core.windows.net/","file":"https://azurecliedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkml665q5cacvdpt3xnqvtxlf6tnizaecikm3p6b3sjztp3xdmho4xfjertdheykac/providers/Microsoft.Storage/storageAccounts/clitest4y7fofzs3ujuabfp7","name":"clitest4y7fofzs3ujuabfp7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:26:37.1324914Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:26:37.1324914Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T03:26:37.0231365Z","primaryEndpoints":{"blob":"https://clitest4y7fofzs3ujuabfp7.blob.core.windows.net/","queue":"https://clitest4y7fofzs3ujuabfp7.queue.core.windows.net/","table":"https://clitest4y7fofzs3ujuabfp7.table.core.windows.net/","file":"https://clitest4y7fofzs3ujuabfp7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg26ny3xcsyfewv3qg3asrpdgrkc64rwrbyonfryslosgoxwmvoz2x4qln7fd2lowsj/providers/Microsoft.Storage/storageAccounts/clitest5ai4souyakgrdg5oz","name":"clitest5ai4souyakgrdg5oz","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:19.7262912Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:19.7262912Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:53:19.6325274Z","primaryEndpoints":{"blob":"https://clitest5ai4souyakgrdg5oz.blob.core.windows.net/","queue":"https://clitest5ai4souyakgrdg5oz.queue.core.windows.net/","table":"https://clitest5ai4souyakgrdg5oz.table.core.windows.net/","file":"https://clitest5ai4souyakgrdg5oz.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxfhzfdpfi7fwsegigabb6s6nk4vy5y6rfsemeycinzwihgr26aij6xbuszvt3u36/providers/Microsoft.Storage/storageAccounts/clitestbilzhmvshjpgny4qh","name":"clitestbilzhmvshjpgny4qh","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.7269372Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.7269372Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T06:42:36.6019381Z","primaryEndpoints":{"blob":"https://clitestbilzhmvshjpgny4qh.blob.core.windows.net/","queue":"https://clitestbilzhmvshjpgny4qh.queue.core.windows.net/","table":"https://clitestbilzhmvshjpgny4qh.table.core.windows.net/","file":"https://clitestbilzhmvshjpgny4qh.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxagbhj6rvluqjj4gowvxygntfp7jr5523gws2echnpzx7nzftezfbael4roce5776/providers/Microsoft.Storage/storageAccounts/clitestddcgzpyoportuvlfg","name":"clitestddcgzpyoportuvlfg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.3675586Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.3675586Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T06:42:36.2738116Z","primaryEndpoints":{"blob":"https://clitestddcgzpyoportuvlfg.blob.core.windows.net/","queue":"https://clitestddcgzpyoportuvlfg.queue.core.windows.net/","table":"https://clitestddcgzpyoportuvlfg.table.core.windows.net/","file":"https://clitestddcgzpyoportuvlfg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwd3hzs2m3p7fuwb7oe2u4bqwmoe5gb7hsaeut4fb5hpiic3b2dmqcv2yspe3xhalw/providers/Microsoft.Storage/storageAccounts/clitestfnjbadoveut3mvvpf","name":"clitestfnjbadoveut3mvvpf","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:35.0726068Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:35.0726068Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:39:34.9788865Z","primaryEndpoints":{"blob":"https://clitestfnjbadoveut3mvvpf.blob.core.windows.net/","queue":"https://clitestfnjbadoveut3mvvpf.queue.core.windows.net/","table":"https://clitestfnjbadoveut3mvvpf.table.core.windows.net/","file":"https://clitestfnjbadoveut3mvvpf.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvg2r7nbxazbiahljziu2uimigqorwz4k4qumvj5peulw2lh3hjx4igwxqgdyrttk/providers/Microsoft.Storage/storageAccounts/clitestlvvl7xg7t3iwdjgbh","name":"clitestlvvl7xg7t3iwdjgbh","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:21.1012972Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:21.1012972Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:53:20.9919250Z","primaryEndpoints":{"blob":"https://clitestlvvl7xg7t3iwdjgbh.blob.core.windows.net/","queue":"https://clitestlvvl7xg7t3iwdjgbh.queue.core.windows.net/","table":"https://clitestlvvl7xg7t3iwdjgbh.table.core.windows.net/","file":"https://clitestlvvl7xg7t3iwdjgbh.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguq2mdec4p2qmpeq7dstxgbizeznapfh5cyylo2bi2euyvyokiqnggvqhl3eo5qim2/providers/Microsoft.Storage/storageAccounts/clitestogtknxlag5bb2whvf","name":"clitestogtknxlag5bb2whvf","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:33.6663749Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:33.6663749Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:39:33.5882283Z","primaryEndpoints":{"blob":"https://clitestogtknxlag5bb2whvf.blob.core.windows.net/","queue":"https://clitestogtknxlag5bb2whvf.queue.core.windows.net/","table":"https://clitestogtknxlag5bb2whvf.table.core.windows.net/","file":"https://clitestogtknxlag5bb2whvf.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjfczrypeqdy6zjxohpe5d4k5d6nkt2arzlbiqekvuyl5fqino3cbj3byd7d2fiwwy/providers/Microsoft.Storage/storageAccounts/clitestv7f4khn2m2sbya3e7","name":"clitestv7f4khn2m2sbya3e7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.0394335Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.0394335Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T06:42:35.9456810Z","primaryEndpoints":{"blob":"https://clitestv7f4khn2m2sbya3e7.blob.core.windows.net/","queue":"https://clitestv7f4khn2m2sbya3e7.queue.core.windows.net/","table":"https://clitestv7f4khn2m2sbya3e7.table.core.windows.net/","file":"https://clitestv7f4khn2m2sbya3e7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capturefy2mop6bzrqz7hyfzlnc7xxafevlj4l5h5gbgds/providers/Microsoft.Storage/storageAccounts/clitestvpngix7nhukff6lqx","name":"clitestvpngix7nhukff6lqx","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:53:59.5988052Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:53:59.5988052Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:53:59.5050192Z","primaryEndpoints":{"blob":"https://clitestvpngix7nhukff6lqx.blob.core.windows.net/","queue":"https://clitestvpngix7nhukff6lqx.queue.core.windows.net/","table":"https://clitestvpngix7nhukff6lqx.table.core.windows.net/","file":"https://clitestvpngix7nhukff6lqx.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Storage/storageAccounts/clitestvpngw000002","name":"clitestvpngw000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T05:18:25.5510836Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T05:18:25.5510836Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T05:18:25.4573344Z","primaryEndpoints":{"blob":"https://clitestvpngw000002.blob.core.windows.net/","queue":"https://clitestvpngw000002.queue.core.windows.net/","table":"https://clitestvpngw000002.table.core.windows.net/","file":"https://clitestvpngw000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstwu","name":"jlstwu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-12T06:29:22.9138997Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-12T06:29:22.9138997Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-12T06:29:22.8201627Z","primaryEndpoints":{"dfs":"https://jlstwu.dfs.core.windows.net/","web":"https://jlstwu.z22.web.core.windows.net/","blob":"https://jlstwu.blob.core.windows.net/","queue":"https://jlstwu.queue.core.windows.net/","table":"https://jlstwu.table.core.windows.net/","file":"https://jlstwu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu-persist/providers/Microsoft.Storage/storageAccounts/kairu","name":"kairu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-13T07:35:18.9856251Z","primaryEndpoints":{"blob":"https://kairu.blob.core.windows.net/","queue":"https://kairu.queue.core.windows.net/","table":"https://kairu.table.core.windows.net/","file":"https://kairu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu/providers/Microsoft.Storage/storageAccounts/kairu2","name":"kairu2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T02:10:12.5165019Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T02:10:12.5165019Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T02:10:12.4383643Z","primaryEndpoints":{"blob":"https://kairu2.blob.core.windows.net/","queue":"https://kairu2.queue.core.windows.net/","table":"https://kairu2.table.core.windows.net/","file":"https://kairu2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-live-test-rg/providers/Microsoft.Storage/storageAccounts/locksa","name":"locksa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"azureFilesIdentityBasedAuthentication":{"directoryServiceOptions":"None"},"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:24:17.1371655Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:24:17.1371655Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:24:17.0434116Z","primaryEndpoints":{"dfs":"https://locksa.dfs.core.windows.net/","web":"https://locksa.z22.web.core.windows.net/","blob":"https://locksa.blob.core.windows.net/","queue":"https://locksa.queue.core.windows.net/","table":"https://locksa.table.core.windows.net/","file":"https://locksa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://locksa-secondary.dfs.core.windows.net/","web":"https://locksa-secondary.z22.web.core.windows.net/","blob":"https://locksa-secondary.blob.core.windows.net/","queue":"https://locksa-secondary.queue.core.windows.net/","table":"https://locksa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.Storage/storageAccounts/sharedvmextension","name":"sharedvmextension","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-06T03:37:04.8004229Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-06T03:37:04.8004229Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-06T03:37:04.7066555Z","primaryEndpoints":{"dfs":"https://sharedvmextension.dfs.core.windows.net/","web":"https://sharedvmextension.z22.web.core.windows.net/","blob":"https://sharedvmextension.blob.core.windows.net/","queue":"https://sharedvmextension.queue.core.windows.net/","table":"https://sharedvmextension.table.core.windows.net/","file":"https://sharedvmextension.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sharedvmextension-secondary.dfs.core.windows.net/","web":"https://sharedvmextension-secondary.z22.web.core.windows.net/","blob":"https://sharedvmextension-secondary.blob.core.windows.net/","queue":"https://sharedvmextension-secondary.queue.core.windows.net/","table":"https://sharedvmextension-secondary.table.core.windows.net/"}}},{"identity":{"principalId":"c120e453-0fb4-41f4-b9e7-ac280e27992a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testcreationtime","name":"testcreationtime","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"keyvaultproperties":{"currentVersionedKeyIdentifier":"https://ysvault.vault.azure.net/keys/testkey/d8d87cea758042e6adf5a4074074143d","lastKeyRotationTimestamp":"2021-04-08T03:14:41.3659071Z","currentVersionedKeyExpirationTimestamp":"1970-01-01T00:00:00.0000000Z","keyvaulturi":"https://ysvault.vault.azure.net/","keyname":"testkey"},"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-08T02:43:57.2406486Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-08T02:43:57.2406486Z"}},"keySource":"Microsoft.Keyvault"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-08T02:43:57.1469079Z","primaryEndpoints":{"dfs":"https://testcreationtime.dfs.core.windows.net/","web":"https://testcreationtime.z22.web.core.windows.net/","blob":"https://testcreationtime.blob.core.windows.net/","queue":"https://testcreationtime.queue.core.windows.net/","table":"https://testcreationtime.table.core.windows.net/","file":"https://testcreationtime.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict2hlt3hjd6ftbhmhgs4sme5ehjdliqmupshzat3mfm4/providers/Microsoft.Storage/storageAccounts/vhdstorage1cc5c55e65c6ba","name":"vhdstorage1cc5c55e65c6ba","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:15:15.5847034Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:15:15.5847034Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T10:15:15.5065645Z","primaryEndpoints":{"blob":"https://vhdstorage1cc5c55e65c6ba.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_from_unmanaged_diskdssdpxnb5ldydequta6oeaw5ageohexhny22dt6pecu3/providers/Microsoft.Storage/storageAccounts/vhdstorage275fba07affab1","name":"vhdstorage275fba07affab1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:11:40.7135540Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:11:40.7135540Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:11:40.6198025Z","primaryEndpoints":{"blob":"https://vhdstorage275fba07affab1.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflicttl5x5jhkyghl4tgcjnc5fzoouxxkiwqaqytbgj2uyi/providers/Microsoft.Storage/storageAccounts/vhdstorage322ec240306b45","name":"vhdstorage322ec240306b45","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:54:55.4766204Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:54:55.4766204Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T03:54:55.3828470Z","primaryEndpoints":{"blob":"https://vhdstorage322ec240306b45.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_with_specialized_unmanaged_disk3n7e7ckolh67wsjyh5we5a3jyl7cxfqv/providers/Microsoft.Storage/storageAccounts/vhdstorage8eeecfe0931d90","name":"vhdstorage8eeecfe0931d90","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:37:40.7074350Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:37:40.7074350Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T13:37:40.6136620Z","primaryEndpoints":{"blob":"https://vhdstorage8eeecfe0931d90.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_with_specialized_unmanaged_diskqjsj2uyj7ggeqph7kggnq7xhxqrguxq3/providers/Microsoft.Storage/storageAccounts/vhdstoragecbb56a895c55ad","name":"vhdstoragecbb56a895c55ad","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:13:22.9411349Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:13:22.9411349Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T10:13:22.8473784Z","primaryEndpoints":{"blob":"https://vhdstoragecbb56a895c55ad.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_with_specialized_unmanaged_disksg6yqaj5wgtkxwkb4flr3x5c56fq5wf6/providers/Microsoft.Storage/storageAccounts/vhdstoragef5d18edf59d8b9","name":"vhdstoragef5d18edf59d8b9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:13:52.1994651Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:13:52.1994651Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:13:52.0744621Z","primaryEndpoints":{"blob":"https://vhdstoragef5d18edf59d8b9.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssa","name":"yssa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-27T14:55:33.7123620Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-27T14:55:33.7123620Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-27T14:55:33.6342573Z","primaryEndpoints":{"dfs":"https://yssa.dfs.core.windows.net/","web":"https://yssa.z22.web.core.windows.net/","blob":"https://yssa.blob.core.windows.net/","queue":"https://yssa.queue.core.windows.net/","table":"https://yssa.table.core.windows.net/","file":"https://yssa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssa-secondary.dfs.core.windows.net/","web":"https://yssa-secondary.z22.web.core.windows.net/","blob":"https://yssa-secondary.blob.core.windows.net/","queue":"https://yssa-secondary.queue.core.windows.net/","table":"https://yssa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaadls","name":"yssaadls","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-11T08:16:02.3188031Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-11T08:16:02.3188031Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-11T08:16:02.2406559Z","primaryEndpoints":{"dfs":"https://yssaadls.dfs.core.windows.net/","web":"https://yssaadls.z22.web.core.windows.net/","blob":"https://yssaadls.blob.core.windows.net/","queue":"https://yssaadls.queue.core.windows.net/","table":"https://yssaadls.table.core.windows.net/","file":"https://yssaadls.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssaadls-secondary.dfs.core.windows.net/","web":"https://yssaadls-secondary.z22.web.core.windows.net/","blob":"https://yssaadls-secondary.blob.core.windows.net/","queue":"https://yssaadls-secondary.queue.core.windows.net/","table":"https://yssaadls-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssatmp","name":"yssatmp","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-04T07:19:47.0265181Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-04T07:19:47.0265181Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-02-04T07:19:46.9171303Z","primaryEndpoints":{"dfs":"https://yssatmp.dfs.core.windows.net/","blob":"https://yssatmp.blob.core.windows.net/","table":"https://yssatmp.table.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssatmp-secondary.dfs.core.windows.net/","blob":"https://yssatmp-secondary.blob.core.windows.net/","table":"https://yssatmp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtestss","name":"zuhtestss","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T03:15:16.1506479Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T03:15:16.1506479Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T03:15:16.0412704Z","primaryEndpoints":{"blob":"https://zuhtestss.blob.core.windows.net/","queue":"https://zuhtestss.queue.core.windows.net/","table":"https://zuhtestss.table.core.windows.net/","file":"https://zuhtestss.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zuhtestss-secondary.blob.core.windows.net/","queue":"https://zuhtestss-secondary.queue.core.windows.net/","table":"https://zuhtestss-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/azuresdktest","name":"azuresdktest","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-12T06:32:07.0689199Z","primaryEndpoints":{"dfs":"https://azuresdktest.dfs.core.windows.net/","web":"https://azuresdktest.z7.web.core.windows.net/","blob":"https://azuresdktest.blob.core.windows.net/","queue":"https://azuresdktest.queue.core.windows.net/","table":"https://azuresdktest.table.core.windows.net/","file":"https://azuresdktest.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524","name":"cs1100320004dd89524","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-26T05:48:15.6545059Z","primaryEndpoints":{"dfs":"https://cs1100320004dd89524.dfs.core.windows.net/","web":"https://cs1100320004dd89524.z23.web.core.windows.net/","blob":"https://cs1100320004dd89524.blob.core.windows.net/","queue":"https://cs1100320004dd89524.queue.core.windows.net/","table":"https://cs1100320004dd89524.table.core.windows.net/","file":"https://cs1100320004dd89524.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-25T03:24:00.9490326Z","primaryEndpoints":{"dfs":"https://cs1100320007de01867.dfs.core.windows.net/","web":"https://cs1100320007de01867.z23.web.core.windows.net/","blob":"https://cs1100320007de01867.blob.core.windows.net/","queue":"https://cs1100320007de01867.queue.core.windows.net/","table":"https://cs1100320007de01867.table.core.windows.net/","file":"https://cs1100320007de01867.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc","name":"cs1100320008debd5bc","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-17T07:12:44.0351358Z","primaryEndpoints":{"dfs":"https://cs1100320008debd5bc.dfs.core.windows.net/","web":"https://cs1100320008debd5bc.z23.web.core.windows.net/","blob":"https://cs1100320008debd5bc.blob.core.windows.net/","queue":"https://cs1100320008debd5bc.queue.core.windows.net/","table":"https://cs1100320008debd5bc.table.core.windows.net/","file":"https://cs1100320008debd5bc.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771","name":"cs11003200092fe0771","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-23T07:08:51.0811120Z","primaryEndpoints":{"dfs":"https://cs11003200092fe0771.dfs.core.windows.net/","web":"https://cs11003200092fe0771.z23.web.core.windows.net/","blob":"https://cs11003200092fe0771.blob.core.windows.net/","queue":"https://cs11003200092fe0771.queue.core.windows.net/","table":"https://cs11003200092fe0771.table.core.windows.net/","file":"https://cs11003200092fe0771.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-22T02:06:18.4217109Z","primaryEndpoints":{"dfs":"https://cs110032000ca62af00.dfs.core.windows.net/","web":"https://cs110032000ca62af00.z23.web.core.windows.net/","blob":"https://cs110032000ca62af00.blob.core.windows.net/","queue":"https://cs110032000ca62af00.queue.core.windows.net/","table":"https://cs110032000ca62af00.table.core.windows.net/","file":"https://cs110032000ca62af00.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47","name":"cs11003200127365c47","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-25T03:10:52.5318146Z","primaryEndpoints":{"dfs":"https://cs11003200127365c47.dfs.core.windows.net/","web":"https://cs11003200127365c47.z23.web.core.windows.net/","blob":"https://cs11003200127365c47.blob.core.windows.net/","queue":"https://cs11003200127365c47.queue.core.windows.net/","table":"https://cs11003200127365c47.table.core.windows.net/","file":"https://cs11003200127365c47.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452","name":"cs1100320012c36c452","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T08:04:25.5198295Z","primaryEndpoints":{"dfs":"https://cs1100320012c36c452.dfs.core.windows.net/","web":"https://cs1100320012c36c452.z23.web.core.windows.net/","blob":"https://cs1100320012c36c452.blob.core.windows.net/","queue":"https://cs1100320012c36c452.queue.core.windows.net/","table":"https://cs1100320012c36c452.table.core.windows.net/","file":"https://cs1100320012c36c452.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst","name":"jlst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-31T03:05:24.8023719Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-31T03:05:24.8023719Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-12-31T03:05:24.7086186Z","primaryEndpoints":{"dfs":"https://jlst.dfs.core.windows.net/","web":"https://jlst.z23.web.core.windows.net/","blob":"https://jlst.blob.core.windows.net/","queue":"https://jlst.queue.core.windows.net/","table":"https://jlst.table.core.windows.net/","file":"https://jlst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs","name":"jlstcs","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-13T06:39:02.4278678Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-13T06:39:02.4278678Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-13T06:39:02.3497160Z","primaryEndpoints":{"dfs":"https://jlstcs.dfs.core.windows.net/","web":"https://jlstcs.z23.web.core.windows.net/","blob":"https://jlstcs.blob.core.windows.net/","queue":"https://jlstcs.queue.core.windows.net/","table":"https://jlstcs.table.core.windows.net/","file":"https://jlstcs.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag","name":"qianwensdiag","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T07:17:09.1138103Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T07:17:09.1138103Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T07:17:09.0514178Z","primaryEndpoints":{"blob":"https://qianwensdiag.blob.core.windows.net/","queue":"https://qianwensdiag.queue.core.windows.net/","table":"https://qianwensdiag.table.core.windows.net/","file":"https://qianwensdiag.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/extmigrate","name":"extmigrate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T08:26:10.5858998Z","primaryEndpoints":{"blob":"https://extmigrate.blob.core.windows.net/","queue":"https://extmigrate.queue.core.windows.net/","table":"https://extmigrate.table.core.windows.net/","file":"https://extmigrate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://extmigrate-secondary.blob.core.windows.net/","queue":"https://extmigrate-secondary.queue.core.windows.net/","table":"https://extmigrate-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengtestsa","name":"fengtestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:10:28.6266623Z","primaryEndpoints":{"dfs":"https://fengtestsa.dfs.core.windows.net/","web":"https://fengtestsa.z19.web.core.windows.net/","blob":"https://fengtestsa.blob.core.windows.net/","queue":"https://fengtestsa.queue.core.windows.net/","table":"https://fengtestsa.table.core.windows.net/","file":"https://fengtestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengtestsa-secondary.dfs.core.windows.net/","web":"https://fengtestsa-secondary.z19.web.core.windows.net/","blob":"https://fengtestsa-secondary.blob.core.windows.net/","queue":"https://fengtestsa-secondary.queue.core.windows.net/","table":"https://fengtestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907/providers/Microsoft.Storage/storageAccounts/6ynst8ytvcms52eviy9cme3e","name":"6ynst8ytvcms52eviy9cme3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"createdby":"azureimagebuilder","magicvalue":"0d819542a3774a2a8709401a7cd09eb8"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-10T11:43:29.9651518Z","primaryEndpoints":{"blob":"https://6ynst8ytvcms52eviy9cme3e.blob.core.windows.net/","queue":"https://6ynst8ytvcms52eviy9cme3e.queue.core.windows.net/","table":"https://6ynst8ytvcms52eviy9cme3e.table.core.windows.net/","file":"https://6ynst8ytvcms52eviy9cme3e.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaeuap","name":"yssaeuap","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-10T03:37:15.2571646Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-10T03:37:15.2571646Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-10T03:37:15.1871764Z","primaryEndpoints":{"dfs":"https://yssaeuap.dfs.core.windows.net/","web":"https://yssaeuap.z3.web.core.windows.net/","blob":"https://yssaeuap.blob.core.windows.net/","queue":"https://yssaeuap.queue.core.windows.net/","table":"https://yssaeuap.table.core.windows.net/","file":"https://yssaeuap.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssaeuap-secondary.dfs.core.windows.net/","web":"https://yssaeuap-secondary.z3.web.core.windows.net/","blob":"https://yssaeuap-secondary.blob.core.windows.net/","queue":"https://yssaeuap-secondary.queue.core.windows.net/","table":"https://yssaeuap-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssanew","name":"yssanew","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-06T09:18:53.7220848Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-06T09:18:53.7220848Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-06T09:18:53.6620997Z","primaryEndpoints":{"dfs":"https://yssanew.dfs.core.windows.net/","web":"https://yssanew.z3.web.core.windows.net/","blob":"https://yssanew.blob.core.windows.net/","queue":"https://yssanew.queue.core.windows.net/","table":"https://yssanew.table.core.windows.net/","file":"https://yssanew.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssanew-secondary.dfs.core.windows.net/","web":"https://yssanew-secondary.z3.web.core.windows.net/","blob":"https://yssanew-secondary.blob.core.windows.net/","queue":"https://yssanew-secondary.queue.core.windows.net/","table":"https://yssanew-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhdefault","name":"zuhdefault","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T09:02:47.5887943Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T09:02:47.5887943Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T09:02:47.5187780Z","primaryEndpoints":{"dfs":"https://zuhdefault.dfs.core.windows.net/","web":"https://zuhdefault.z3.web.core.windows.net/","blob":"https://zuhdefault.blob.core.windows.net/","queue":"https://zuhdefault.queue.core.windows.net/","table":"https://zuhdefault.table.core.windows.net/","file":"https://zuhdefault.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhdefault-secondary.dfs.core.windows.net/","web":"https://zuhdefault-secondary.z3.web.core.windows.net/","blob":"https://zuhdefault-secondary.blob.core.windows.net/","queue":"https://zuhdefault-secondary.queue.core.windows.net/","table":"https://zuhdefault-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtest","name":"zuhtest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"identity":{"type":"ManagedServiceIdentity","userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zuhid"},"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Creating","creationTime":"2021-01-14T07:13:45.0603798Z","primaryEndpoints":{"dfs":"https://zuhtest.dfs.core.windows.net/","web":"https://zuhtest.z3.web.core.windows.net/","blob":"https://zuhtest.blob.core.windows.net/","queue":"https://zuhtest.queue.core.windows.net/","table":"https://zuhtest.table.core.windows.net/","file":"https://zuhtest.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhtest-secondary.dfs.core.windows.net/","web":"https://zuhtest-secondary.z3.web.core.windows.net/","blob":"https://zuhtest-secondary.blob.core.windows.net/","queue":"https://zuhtest-secondary.queue.core.windows.net/","table":"https://zuhtest-secondary.table.core.windows.net/"}}}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '136656'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:18:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-original-request-ids:
+ - b8af2e9c-6049-4556-887d-a1f1bbc9b8d7
+ - 46e15d9f-696f-4608-afae-3a58b51fe399
+ - d8c36d64-10d9-419f-ba52-6242e3b33b44
+ - 322fa0a3-9c78-4b81-97b0-a6520a4f637a
+ - 11a5c844-c578-433a-b64c-0c62717a8c0e
+ - 93b56f4c-1abe-4b52-8202-fd1f08127934
+ - 7b8eb2a4-4fb3-45a1-8133-964df6d28f48
+ - 758df1ae-c040-46e3-83dc-436a60d08232
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage container create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - --account-name --name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Storage/storageAccounts/clitestvpngw000002/listKeys?api-version=2021-01-01&$expand=kerb
+ response:
+ body:
+ string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '288'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 05:18:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-Azure-Storage-Resource-Provider/1.0,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-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -9,29 +110,2659 @@ interactions:
User-Agent:
- Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.22.0
x-ms-date:
- - Thu, 15 Apr 2021 03:18:29 GMT
+ - Thu, 15 Apr 2021 05:18:48 GMT
x-ms-version:
- '2018-11-09'
method: PUT
- uri: https://clitestvpngw000002.blob.core.windows.net/vpngw?restype=container
+ uri: https://clitestvpngw000002.blob.core.windows.net/clitestvpngw000003?restype=container
response:
body:
- string: "\uFEFFResourceNotFoundThe
- specified resource does not exist.\nRequestId:d0d21695-401e-002d-4fa6-31d733000000\nTime:2021-04-15T03:18:32.6832723Z"
+ string: ''
headers:
content-length:
- - '223'
- content-type:
- - application/xml
+ - '0'
date:
- - Thu, 15 Apr 2021 03:18:32 GMT
+ - Thu, 15 Apr 2021 05:18:52 GMT
+ etag:
+ - '"0x8D8FFCDF55E999B"'
+ last-modified:
+ - Thu, 15 Apr 2021 05:18:52 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
- x-ms-error-code:
- - ResourceNotFound
x-ms-version:
- '2018-11-09'
status:
- code: 404
- message: The specified resource does not exist.
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob generate-sas
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n --account-name -c --permissions --expiry -o
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2021-01-01
+ response:
+ body:
+ string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-groupbvy56l4cm5xvclfem5lifl725op2rsc3/providers/Microsoft.Storage/storageAccounts/armbuilddemo5ygtzdg6","name":"armbuilddemo5ygtzdg6","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T09:33:57.1682665Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T09:33:57.1682665Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T09:33:57.0432620Z","primaryEndpoints":{"blob":"https://armbuilddemo5ygtzdg6.blob.core.windows.net/","queue":"https://armbuilddemo5ygtzdg6.queue.core.windows.net/","table":"https://armbuilddemo5ygtzdg6.table.core.windows.net/","file":"https://armbuilddemo5ygtzdg6.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-groupq7pgu7g74kinmn5rzzthu6dosn6x3bow/providers/Microsoft.Storage/storageAccounts/armbuilddemokch5pqfy","name":"armbuilddemokch5pqfy","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:14:10.5632137Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:14:10.5632137Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T09:14:10.4538140Z","primaryEndpoints":{"blob":"https://armbuilddemokch5pqfy.blob.core.windows.net/","queue":"https://armbuilddemokch5pqfy.queue.core.windows.net/","table":"https://armbuilddemokch5pqfy.table.core.windows.net/","file":"https://armbuilddemokch5pqfy.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-group3yqjvwdwmnx2u5yrciutjqdcmvbpm5xe/providers/Microsoft.Storage/storageAccounts/armbuilddemovtxzzcjo","name":"armbuilddemovtxzzcjo","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T08:17:26.3492168Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T08:17:26.3492168Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T08:17:26.2398063Z","primaryEndpoints":{"blob":"https://armbuilddemovtxzzcjo.blob.core.windows.net/","queue":"https://armbuilddemovtxzzcjo.queue.core.windows.net/","table":"https://armbuilddemovtxzzcjo.table.core.windows.net/","file":"https://armbuilddemovtxzzcjo.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-beta/providers/Microsoft.Storage/storageAccounts/azureclibetarelease","name":"azureclibetarelease","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-11T10:32:24.7099044Z","primaryEndpoints":{"dfs":"https://azureclibetarelease.dfs.core.windows.net/","web":"https://azureclibetarelease.z13.web.core.windows.net/","blob":"https://azureclibetarelease.blob.core.windows.net/","queue":"https://azureclibetarelease.queue.core.windows.net/","table":"https://azureclibetarelease.table.core.windows.net/","file":"https://azureclibetarelease.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azureclibetarelease-secondary.dfs.core.windows.net/","web":"https://azureclibetarelease-secondary.z13.web.core.windows.net/","blob":"https://azureclibetarelease-secondary.blob.core.windows.net/","queue":"https://azureclibetarelease-secondary.queue.core.windows.net/","table":"https://azureclibetarelease-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_state_modb53dudzecixoz4yulrklowkbwbckllykr746enpdi34nwuc6irkd5k/providers/Microsoft.Storage/storageAccounts/clistorage3knyi","name":"clistorage3knyi","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"firsttag":"1","secondtag":"2","thirdtag":""},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T04:25:50.7837511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T04:25:50.7837511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T04:25:50.6587502Z","primaryEndpoints":{"blob":"https://clistorage3knyi.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_state_modjdjpnmmhsg5ksljahrwrnsp5ibudhksggzzbmp4pjqmc47pesomh3r/providers/Microsoft.Storage/storageAccounts/clistoragejc6le","name":"clistoragejc6le","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"firsttag":"1","secondtag":"2","thirdtag":""},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:36:13.0895897Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:36:13.0895897Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T13:36:12.9801870Z","primaryEndpoints":{"blob":"https://clistoragejc6le.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwufp5tbusewuzx4ai5w3hswshznjqdnj5gfaxtcmvlsnqukjool4eav3sbh7vvbbw/providers/Microsoft.Storage/storageAccounts/clitest6r2rsw7xdj4unms6t","name":"clitest6r2rsw7xdj4unms6t","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T07:08:25.3503244Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T07:08:25.3503244Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T07:08:25.2409298Z","primaryEndpoints":{"blob":"https://clitest6r2rsw7xdj4unms6t.blob.core.windows.net/","queue":"https://clitest6r2rsw7xdj4unms6t.queue.core.windows.net/","table":"https://clitest6r2rsw7xdj4unms6t.table.core.windows.net/","file":"https://clitest6r2rsw7xdj4unms6t.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestresult/providers/Microsoft.Storage/storageAccounts/clitestresultstac","name":"clitestresultstac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-15T06:20:52.6907255Z","primaryEndpoints":{"dfs":"https://clitestresultstac.dfs.core.windows.net/","web":"https://clitestresultstac.z13.web.core.windows.net/","blob":"https://clitestresultstac.blob.core.windows.net/","queue":"https://clitestresultstac.queue.core.windows.net/","table":"https://clitestresultstac.table.core.windows.net/","file":"https://clitestresultstac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestresultstac-secondary.dfs.core.windows.net/","web":"https://clitestresultstac-secondary.z13.web.core.windows.net/","blob":"https://clitestresultstac-secondary.blob.core.windows.net/","queue":"https://clitestresultstac-secondary.queue.core.windows.net/","table":"https://clitestresultstac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-svohdzm0/providers/Microsoft.Storage/storageAccounts/clusterg7scd","name":"clusterg7scd","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:26.3565153Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:26.3565153Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T08:49:26.2471005Z","primaryEndpoints":{"blob":"https://clusterg7scd.blob.core.windows.net/","queue":"https://clusterg7scd.queue.core.windows.net/","table":"https://clusterg7scd.table.core.windows.net/","file":"https://clusterg7scd.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-ut6bercg/providers/Microsoft.Storage/storageAccounts/clusterlsklq","name":"clusterlsklq","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:24.9971070Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:24.9971070Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T08:49:24.9033800Z","primaryEndpoints":{"blob":"https://clusterlsklq.blob.core.windows.net/","queue":"https://clusterlsklq.queue.core.windows.net/","table":"https://clusterlsklq.table.core.windows.net/","file":"https://clusterlsklq.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.Storage/storageAccounts/fystac","name":"fystac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T03:10:13.4426715Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T03:10:13.4426715Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-08T03:10:13.3645539Z","primaryEndpoints":{"dfs":"https://fystac.dfs.core.windows.net/","web":"https://fystac.z13.web.core.windows.net/","blob":"https://fystac.blob.core.windows.net/","queue":"https://fystac.queue.core.windows.net/","table":"https://fystac.table.core.windows.net/","file":"https://fystac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fystac-secondary.dfs.core.windows.net/","web":"https://fystac-secondary.z13.web.core.windows.net/","blob":"https://fystac-secondary.blob.core.windows.net/","queue":"https://fystac-secondary.queue.core.windows.net/","table":"https://fystac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-svohdzm0/providers/Microsoft.Storage/storageAccounts/imageregistryarofw6nwzts","name":"imageregistryarofw6nwzts","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:31.6710346Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:31.6710346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T09:05:31.5616526Z","primaryEndpoints":{"blob":"https://imageregistryarofw6nwzts.blob.core.windows.net/","queue":"https://imageregistryarofw6nwzts.queue.core.windows.net/","table":"https://imageregistryarofw6nwzts.table.core.windows.net/","file":"https://imageregistryarofw6nwzts.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-ut6bercg/providers/Microsoft.Storage/storageAccounts/imageregistryarov6yf6vcw","name":"imageregistryarov6yf6vcw","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:11.4679262Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:11.4679262Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T09:05:11.3585865Z","primaryEndpoints":{"blob":"https://imageregistryarov6yf6vcw.blob.core.windows.net/","queue":"https://imageregistryarov6yf6vcw.queue.core.windows.net/","table":"https://imageregistryarov6yf6vcw.table.core.windows.net/","file":"https://imageregistryarov6yf6vcw.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-weidxu/providers/Microsoft.Storage/storageAccounts/lcok2weidxu","name":"lcok2weidxu","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T03:19:18.1561890Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T03:19:18.1561890Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T03:19:18.0468159Z","primaryEndpoints":{"dfs":"https://lcok2weidxu.dfs.core.windows.net/","web":"https://lcok2weidxu.z13.web.core.windows.net/","blob":"https://lcok2weidxu.blob.core.windows.net/","queue":"https://lcok2weidxu.queue.core.windows.net/","table":"https://lcok2weidxu.table.core.windows.net/","file":"https://lcok2weidxu.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-14T07:23:08.7502552Z","primaryEndpoints":{"dfs":"https://portal2clistorage.dfs.core.windows.net/","web":"https://portal2clistorage.z13.web.core.windows.net/","blob":"https://portal2clistorage.blob.core.windows.net/","queue":"https://portal2clistorage.queue.core.windows.net/","table":"https://portal2clistorage.table.core.windows.net/","file":"https://portal2clistorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://portal2clistorage-secondary.dfs.core.windows.net/","web":"https://portal2clistorage-secondary.z13.web.core.windows.net/","blob":"https://portal2clistorage-secondary.blob.core.windows.net/","queue":"https://portal2clistorage-secondary.queue.core.windows.net/","table":"https://portal2clistorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwenadls","name":"qianwenadls","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T10:11:06.0357634Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T10:11:06.0357634Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-01T10:11:05.9576622Z","primaryEndpoints":{"dfs":"https://qianwenadls.dfs.core.windows.net/","web":"https://qianwenadls.z13.web.core.windows.net/","blob":"https://qianwenadls.blob.core.windows.net/","queue":"https://qianwenadls.queue.core.windows.net/","table":"https://qianwenadls.table.core.windows.net/","file":"https://qianwenadls.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwenadls-secondary.dfs.core.windows.net/","web":"https://qianwenadls-secondary.z13.web.core.windows.net/","blob":"https://qianwenadls-secondary.blob.core.windows.net/","queue":"https://qianwenadls-secondary.queue.core.windows.net/","table":"https://qianwenadls-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwendev","name":"qianwendev","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Network/virtualNetworks/QIAN/subnets/default","action":"Allow","state":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Network/virtualNetworks/qianwendev/subnets/default","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"23.45.1.0/24","action":"Allow"},{"value":"23.45.1.1/24","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T03:29:28.0084761Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T03:29:28.0084761Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-12T03:29:27.9459854Z","primaryEndpoints":{"dfs":"https://qianwendev.dfs.core.windows.net/","web":"https://qianwendev.z13.web.core.windows.net/","blob":"https://qianwendev.blob.core.windows.net/","queue":"https://qianwendev.queue.core.windows.net/","table":"https://qianwendev.table.core.windows.net/","file":"https://qianwendev.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwendev-secondary.dfs.core.windows.net/","web":"https://qianwendev-secondary.z13.web.core.windows.net/","blob":"https://qianwendev-secondary.blob.core.windows.net/","queue":"https://qianwendev-secondary.queue.core.windows.net/","table":"https://qianwendev-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwenhpctarget","name":"qianwenhpctarget","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T07:09:20.3073299Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T07:09:20.3073299Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-06T07:09:20.2291899Z","primaryEndpoints":{"dfs":"https://qianwenhpctarget.dfs.core.windows.net/","web":"https://qianwenhpctarget.z13.web.core.windows.net/","blob":"https://qianwenhpctarget.blob.core.windows.net/","queue":"https://qianwenhpctarget.queue.core.windows.net/","table":"https://qianwenhpctarget.table.core.windows.net/","file":"https://qianwenhpctarget.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwenhpctarget-secondary.dfs.core.windows.net/","web":"https://qianwenhpctarget-secondary.z13.web.core.windows.net/","blob":"https://qianwenhpctarget-secondary.blob.core.windows.net/","queue":"https://qianwenhpctarget-secondary.queue.core.windows.net/","table":"https://qianwenhpctarget-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-yueshi/providers/Microsoft.Storage/storageAccounts/yueshi4debug","name":"yueshi4debug","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-14T09:43:28.2246331Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-14T09:43:28.2246331Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-14T09:43:28.1308789Z","primaryEndpoints":{"dfs":"https://yueshi4debug.dfs.core.windows.net/","web":"https://yueshi4debug.z13.web.core.windows.net/","blob":"https://yueshi4debug.blob.core.windows.net/","queue":"https://yueshi4debug.queue.core.windows.net/","table":"https://yueshi4debug.table.core.windows.net/","file":"https://yueshi4debug.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yueshi4debug-secondary.dfs.core.windows.net/","web":"https://yueshi4debug-secondary.z13.web.core.windows.net/","blob":"https://yueshi4debug-secondary.blob.core.windows.net/","queue":"https://yueshi4debug-secondary.queue.core.windows.net/","table":"https://yueshi4debug-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-4xdsq/providers/Microsoft.Storage/storageAccounts/hdicliy5u7daegwvwo5fd4xv","name":"hdicliy5u7daegwvwo5fd4xv","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T09:42:58.1150743Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T09:42:58.1150743Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T09:42:58.0057516Z","primaryEndpoints":{"blob":"https://hdicliy5u7daegwvwo5fd4xv.blob.core.windows.net/","queue":"https://hdicliy5u7daegwvwo5fd4xv.queue.core.windows.net/","table":"https://hdicliy5u7daegwvwo5fd4xv.table.core.windows.net/","file":"https://hdicliy5u7daegwvwo5fd4xv.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-live-test-rg/providers/Microsoft.Storage/storageAccounts/advisortestsa","name":"advisortestsa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T02:39:47.2953520Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T02:39:47.2953520Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T02:39:47.1860196Z","primaryEndpoints":{"dfs":"https://advisortestsa.dfs.core.windows.net/","web":"https://advisortestsa.z22.web.core.windows.net/","blob":"https://advisortestsa.blob.core.windows.net/","queue":"https://advisortestsa.queue.core.windows.net/","table":"https://advisortestsa.table.core.windows.net/","file":"https://advisortestsa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://advisortestsa-secondary.dfs.core.windows.net/","web":"https://advisortestsa-secondary.z22.web.core.windows.net/","blob":"https://advisortestsa-secondary.blob.core.windows.net/","queue":"https://advisortestsa-secondary.queue.core.windows.net/","table":"https://advisortestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azextensionedge","name":"azextensionedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T08:51:57.6947156Z","primaryEndpoints":{"dfs":"https://azextensionedge.dfs.core.windows.net/","web":"https://azextensionedge.z22.web.core.windows.net/","blob":"https://azextensionedge.blob.core.windows.net/","queue":"https://azextensionedge.queue.core.windows.net/","table":"https://azextensionedge.table.core.windows.net/","file":"https://azextensionedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azextensionedge-secondary.dfs.core.windows.net/","web":"https://azextensionedge-secondary.z22.web.core.windows.net/","blob":"https://azextensionedge-secondary.blob.core.windows.net/","queue":"https://azextensionedge-secondary.queue.core.windows.net/","table":"https://azextensionedge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azurecliedge","name":"azurecliedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-13T08:41:36.2389304Z","primaryEndpoints":{"dfs":"https://azurecliedge.dfs.core.windows.net/","web":"https://azurecliedge.z22.web.core.windows.net/","blob":"https://azurecliedge.blob.core.windows.net/","queue":"https://azurecliedge.queue.core.windows.net/","table":"https://azurecliedge.table.core.windows.net/","file":"https://azurecliedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkml665q5cacvdpt3xnqvtxlf6tnizaecikm3p6b3sjztp3xdmho4xfjertdheykac/providers/Microsoft.Storage/storageAccounts/clitest4y7fofzs3ujuabfp7","name":"clitest4y7fofzs3ujuabfp7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:26:37.1324914Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:26:37.1324914Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T03:26:37.0231365Z","primaryEndpoints":{"blob":"https://clitest4y7fofzs3ujuabfp7.blob.core.windows.net/","queue":"https://clitest4y7fofzs3ujuabfp7.queue.core.windows.net/","table":"https://clitest4y7fofzs3ujuabfp7.table.core.windows.net/","file":"https://clitest4y7fofzs3ujuabfp7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg26ny3xcsyfewv3qg3asrpdgrkc64rwrbyonfryslosgoxwmvoz2x4qln7fd2lowsj/providers/Microsoft.Storage/storageAccounts/clitest5ai4souyakgrdg5oz","name":"clitest5ai4souyakgrdg5oz","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:19.7262912Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:19.7262912Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:53:19.6325274Z","primaryEndpoints":{"blob":"https://clitest5ai4souyakgrdg5oz.blob.core.windows.net/","queue":"https://clitest5ai4souyakgrdg5oz.queue.core.windows.net/","table":"https://clitest5ai4souyakgrdg5oz.table.core.windows.net/","file":"https://clitest5ai4souyakgrdg5oz.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxfhzfdpfi7fwsegigabb6s6nk4vy5y6rfsemeycinzwihgr26aij6xbuszvt3u36/providers/Microsoft.Storage/storageAccounts/clitestbilzhmvshjpgny4qh","name":"clitestbilzhmvshjpgny4qh","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.7269372Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.7269372Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T06:42:36.6019381Z","primaryEndpoints":{"blob":"https://clitestbilzhmvshjpgny4qh.blob.core.windows.net/","queue":"https://clitestbilzhmvshjpgny4qh.queue.core.windows.net/","table":"https://clitestbilzhmvshjpgny4qh.table.core.windows.net/","file":"https://clitestbilzhmvshjpgny4qh.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxagbhj6rvluqjj4gowvxygntfp7jr5523gws2echnpzx7nzftezfbael4roce5776/providers/Microsoft.Storage/storageAccounts/clitestddcgzpyoportuvlfg","name":"clitestddcgzpyoportuvlfg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.3675586Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.3675586Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T06:42:36.2738116Z","primaryEndpoints":{"blob":"https://clitestddcgzpyoportuvlfg.blob.core.windows.net/","queue":"https://clitestddcgzpyoportuvlfg.queue.core.windows.net/","table":"https://clitestddcgzpyoportuvlfg.table.core.windows.net/","file":"https://clitestddcgzpyoportuvlfg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwd3hzs2m3p7fuwb7oe2u4bqwmoe5gb7hsaeut4fb5hpiic3b2dmqcv2yspe3xhalw/providers/Microsoft.Storage/storageAccounts/clitestfnjbadoveut3mvvpf","name":"clitestfnjbadoveut3mvvpf","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:35.0726068Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:35.0726068Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:39:34.9788865Z","primaryEndpoints":{"blob":"https://clitestfnjbadoveut3mvvpf.blob.core.windows.net/","queue":"https://clitestfnjbadoveut3mvvpf.queue.core.windows.net/","table":"https://clitestfnjbadoveut3mvvpf.table.core.windows.net/","file":"https://clitestfnjbadoveut3mvvpf.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvg2r7nbxazbiahljziu2uimigqorwz4k4qumvj5peulw2lh3hjx4igwxqgdyrttk/providers/Microsoft.Storage/storageAccounts/clitestlvvl7xg7t3iwdjgbh","name":"clitestlvvl7xg7t3iwdjgbh","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:21.1012972Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:21.1012972Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:53:20.9919250Z","primaryEndpoints":{"blob":"https://clitestlvvl7xg7t3iwdjgbh.blob.core.windows.net/","queue":"https://clitestlvvl7xg7t3iwdjgbh.queue.core.windows.net/","table":"https://clitestlvvl7xg7t3iwdjgbh.table.core.windows.net/","file":"https://clitestlvvl7xg7t3iwdjgbh.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguq2mdec4p2qmpeq7dstxgbizeznapfh5cyylo2bi2euyvyokiqnggvqhl3eo5qim2/providers/Microsoft.Storage/storageAccounts/clitestogtknxlag5bb2whvf","name":"clitestogtknxlag5bb2whvf","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:33.6663749Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:33.6663749Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:39:33.5882283Z","primaryEndpoints":{"blob":"https://clitestogtknxlag5bb2whvf.blob.core.windows.net/","queue":"https://clitestogtknxlag5bb2whvf.queue.core.windows.net/","table":"https://clitestogtknxlag5bb2whvf.table.core.windows.net/","file":"https://clitestogtknxlag5bb2whvf.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjfczrypeqdy6zjxohpe5d4k5d6nkt2arzlbiqekvuyl5fqino3cbj3byd7d2fiwwy/providers/Microsoft.Storage/storageAccounts/clitestv7f4khn2m2sbya3e7","name":"clitestv7f4khn2m2sbya3e7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.0394335Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.0394335Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T06:42:35.9456810Z","primaryEndpoints":{"blob":"https://clitestv7f4khn2m2sbya3e7.blob.core.windows.net/","queue":"https://clitestv7f4khn2m2sbya3e7.queue.core.windows.net/","table":"https://clitestv7f4khn2m2sbya3e7.table.core.windows.net/","file":"https://clitestv7f4khn2m2sbya3e7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capturefy2mop6bzrqz7hyfzlnc7xxafevlj4l5h5gbgds/providers/Microsoft.Storage/storageAccounts/clitestvpngix7nhukff6lqx","name":"clitestvpngix7nhukff6lqx","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:53:59.5988052Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:53:59.5988052Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:53:59.5050192Z","primaryEndpoints":{"blob":"https://clitestvpngix7nhukff6lqx.blob.core.windows.net/","queue":"https://clitestvpngix7nhukff6lqx.queue.core.windows.net/","table":"https://clitestvpngix7nhukff6lqx.table.core.windows.net/","file":"https://clitestvpngix7nhukff6lqx.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Storage/storageAccounts/clitestvpngw000002","name":"clitestvpngw000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T05:18:25.5510836Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T05:18:25.5510836Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T05:18:25.4573344Z","primaryEndpoints":{"blob":"https://clitestvpngw000002.blob.core.windows.net/","queue":"https://clitestvpngw000002.queue.core.windows.net/","table":"https://clitestvpngw000002.table.core.windows.net/","file":"https://clitestvpngw000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstwu","name":"jlstwu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-12T06:29:22.9138997Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-12T06:29:22.9138997Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-12T06:29:22.8201627Z","primaryEndpoints":{"dfs":"https://jlstwu.dfs.core.windows.net/","web":"https://jlstwu.z22.web.core.windows.net/","blob":"https://jlstwu.blob.core.windows.net/","queue":"https://jlstwu.queue.core.windows.net/","table":"https://jlstwu.table.core.windows.net/","file":"https://jlstwu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu-persist/providers/Microsoft.Storage/storageAccounts/kairu","name":"kairu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-13T07:35:18.9856251Z","primaryEndpoints":{"blob":"https://kairu.blob.core.windows.net/","queue":"https://kairu.queue.core.windows.net/","table":"https://kairu.table.core.windows.net/","file":"https://kairu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu/providers/Microsoft.Storage/storageAccounts/kairu2","name":"kairu2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T02:10:12.5165019Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T02:10:12.5165019Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T02:10:12.4383643Z","primaryEndpoints":{"blob":"https://kairu2.blob.core.windows.net/","queue":"https://kairu2.queue.core.windows.net/","table":"https://kairu2.table.core.windows.net/","file":"https://kairu2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-live-test-rg/providers/Microsoft.Storage/storageAccounts/locksa","name":"locksa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"azureFilesIdentityBasedAuthentication":{"directoryServiceOptions":"None"},"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:24:17.1371655Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:24:17.1371655Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:24:17.0434116Z","primaryEndpoints":{"dfs":"https://locksa.dfs.core.windows.net/","web":"https://locksa.z22.web.core.windows.net/","blob":"https://locksa.blob.core.windows.net/","queue":"https://locksa.queue.core.windows.net/","table":"https://locksa.table.core.windows.net/","file":"https://locksa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://locksa-secondary.dfs.core.windows.net/","web":"https://locksa-secondary.z22.web.core.windows.net/","blob":"https://locksa-secondary.blob.core.windows.net/","queue":"https://locksa-secondary.queue.core.windows.net/","table":"https://locksa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.Storage/storageAccounts/sharedvmextension","name":"sharedvmextension","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-06T03:37:04.8004229Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-06T03:37:04.8004229Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-06T03:37:04.7066555Z","primaryEndpoints":{"dfs":"https://sharedvmextension.dfs.core.windows.net/","web":"https://sharedvmextension.z22.web.core.windows.net/","blob":"https://sharedvmextension.blob.core.windows.net/","queue":"https://sharedvmextension.queue.core.windows.net/","table":"https://sharedvmextension.table.core.windows.net/","file":"https://sharedvmextension.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sharedvmextension-secondary.dfs.core.windows.net/","web":"https://sharedvmextension-secondary.z22.web.core.windows.net/","blob":"https://sharedvmextension-secondary.blob.core.windows.net/","queue":"https://sharedvmextension-secondary.queue.core.windows.net/","table":"https://sharedvmextension-secondary.table.core.windows.net/"}}},{"identity":{"principalId":"c120e453-0fb4-41f4-b9e7-ac280e27992a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testcreationtime","name":"testcreationtime","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"keyvaultproperties":{"currentVersionedKeyIdentifier":"https://ysvault.vault.azure.net/keys/testkey/d8d87cea758042e6adf5a4074074143d","lastKeyRotationTimestamp":"2021-04-08T03:14:41.3659071Z","currentVersionedKeyExpirationTimestamp":"1970-01-01T00:00:00.0000000Z","keyvaulturi":"https://ysvault.vault.azure.net/","keyname":"testkey"},"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-08T02:43:57.2406486Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-08T02:43:57.2406486Z"}},"keySource":"Microsoft.Keyvault"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-08T02:43:57.1469079Z","primaryEndpoints":{"dfs":"https://testcreationtime.dfs.core.windows.net/","web":"https://testcreationtime.z22.web.core.windows.net/","blob":"https://testcreationtime.blob.core.windows.net/","queue":"https://testcreationtime.queue.core.windows.net/","table":"https://testcreationtime.table.core.windows.net/","file":"https://testcreationtime.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict2hlt3hjd6ftbhmhgs4sme5ehjdliqmupshzat3mfm4/providers/Microsoft.Storage/storageAccounts/vhdstorage1cc5c55e65c6ba","name":"vhdstorage1cc5c55e65c6ba","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:15:15.5847034Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:15:15.5847034Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T10:15:15.5065645Z","primaryEndpoints":{"blob":"https://vhdstorage1cc5c55e65c6ba.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_from_unmanaged_diskdssdpxnb5ldydequta6oeaw5ageohexhny22dt6pecu3/providers/Microsoft.Storage/storageAccounts/vhdstorage275fba07affab1","name":"vhdstorage275fba07affab1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:11:40.7135540Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:11:40.7135540Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:11:40.6198025Z","primaryEndpoints":{"blob":"https://vhdstorage275fba07affab1.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflicttl5x5jhkyghl4tgcjnc5fzoouxxkiwqaqytbgj2uyi/providers/Microsoft.Storage/storageAccounts/vhdstorage322ec240306b45","name":"vhdstorage322ec240306b45","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:54:55.4766204Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:54:55.4766204Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T03:54:55.3828470Z","primaryEndpoints":{"blob":"https://vhdstorage322ec240306b45.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_with_specialized_unmanaged_disk3n7e7ckolh67wsjyh5we5a3jyl7cxfqv/providers/Microsoft.Storage/storageAccounts/vhdstorage8eeecfe0931d90","name":"vhdstorage8eeecfe0931d90","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:37:40.7074350Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:37:40.7074350Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T13:37:40.6136620Z","primaryEndpoints":{"blob":"https://vhdstorage8eeecfe0931d90.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_with_specialized_unmanaged_diskqjsj2uyj7ggeqph7kggnq7xhxqrguxq3/providers/Microsoft.Storage/storageAccounts/vhdstoragecbb56a895c55ad","name":"vhdstoragecbb56a895c55ad","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:13:22.9411349Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:13:22.9411349Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T10:13:22.8473784Z","primaryEndpoints":{"blob":"https://vhdstoragecbb56a895c55ad.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_with_specialized_unmanaged_disksg6yqaj5wgtkxwkb4flr3x5c56fq5wf6/providers/Microsoft.Storage/storageAccounts/vhdstoragef5d18edf59d8b9","name":"vhdstoragef5d18edf59d8b9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:13:52.1994651Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:13:52.1994651Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:13:52.0744621Z","primaryEndpoints":{"blob":"https://vhdstoragef5d18edf59d8b9.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssa","name":"yssa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-27T14:55:33.7123620Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-27T14:55:33.7123620Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-27T14:55:33.6342573Z","primaryEndpoints":{"dfs":"https://yssa.dfs.core.windows.net/","web":"https://yssa.z22.web.core.windows.net/","blob":"https://yssa.blob.core.windows.net/","queue":"https://yssa.queue.core.windows.net/","table":"https://yssa.table.core.windows.net/","file":"https://yssa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssa-secondary.dfs.core.windows.net/","web":"https://yssa-secondary.z22.web.core.windows.net/","blob":"https://yssa-secondary.blob.core.windows.net/","queue":"https://yssa-secondary.queue.core.windows.net/","table":"https://yssa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaadls","name":"yssaadls","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-11T08:16:02.3188031Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-11T08:16:02.3188031Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-11T08:16:02.2406559Z","primaryEndpoints":{"dfs":"https://yssaadls.dfs.core.windows.net/","web":"https://yssaadls.z22.web.core.windows.net/","blob":"https://yssaadls.blob.core.windows.net/","queue":"https://yssaadls.queue.core.windows.net/","table":"https://yssaadls.table.core.windows.net/","file":"https://yssaadls.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssaadls-secondary.dfs.core.windows.net/","web":"https://yssaadls-secondary.z22.web.core.windows.net/","blob":"https://yssaadls-secondary.blob.core.windows.net/","queue":"https://yssaadls-secondary.queue.core.windows.net/","table":"https://yssaadls-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssatmp","name":"yssatmp","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-04T07:19:47.0265181Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-04T07:19:47.0265181Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-02-04T07:19:46.9171303Z","primaryEndpoints":{"dfs":"https://yssatmp.dfs.core.windows.net/","blob":"https://yssatmp.blob.core.windows.net/","table":"https://yssatmp.table.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssatmp-secondary.dfs.core.windows.net/","blob":"https://yssatmp-secondary.blob.core.windows.net/","table":"https://yssatmp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtestss","name":"zuhtestss","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T03:15:16.1506479Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T03:15:16.1506479Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T03:15:16.0412704Z","primaryEndpoints":{"blob":"https://zuhtestss.blob.core.windows.net/","queue":"https://zuhtestss.queue.core.windows.net/","table":"https://zuhtestss.table.core.windows.net/","file":"https://zuhtestss.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zuhtestss-secondary.blob.core.windows.net/","queue":"https://zuhtestss-secondary.queue.core.windows.net/","table":"https://zuhtestss-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/azuresdktest","name":"azuresdktest","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-12T06:32:07.0689199Z","primaryEndpoints":{"dfs":"https://azuresdktest.dfs.core.windows.net/","web":"https://azuresdktest.z7.web.core.windows.net/","blob":"https://azuresdktest.blob.core.windows.net/","queue":"https://azuresdktest.queue.core.windows.net/","table":"https://azuresdktest.table.core.windows.net/","file":"https://azuresdktest.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524","name":"cs1100320004dd89524","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-26T05:48:15.6545059Z","primaryEndpoints":{"dfs":"https://cs1100320004dd89524.dfs.core.windows.net/","web":"https://cs1100320004dd89524.z23.web.core.windows.net/","blob":"https://cs1100320004dd89524.blob.core.windows.net/","queue":"https://cs1100320004dd89524.queue.core.windows.net/","table":"https://cs1100320004dd89524.table.core.windows.net/","file":"https://cs1100320004dd89524.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-25T03:24:00.9490326Z","primaryEndpoints":{"dfs":"https://cs1100320007de01867.dfs.core.windows.net/","web":"https://cs1100320007de01867.z23.web.core.windows.net/","blob":"https://cs1100320007de01867.blob.core.windows.net/","queue":"https://cs1100320007de01867.queue.core.windows.net/","table":"https://cs1100320007de01867.table.core.windows.net/","file":"https://cs1100320007de01867.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc","name":"cs1100320008debd5bc","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-17T07:12:44.0351358Z","primaryEndpoints":{"dfs":"https://cs1100320008debd5bc.dfs.core.windows.net/","web":"https://cs1100320008debd5bc.z23.web.core.windows.net/","blob":"https://cs1100320008debd5bc.blob.core.windows.net/","queue":"https://cs1100320008debd5bc.queue.core.windows.net/","table":"https://cs1100320008debd5bc.table.core.windows.net/","file":"https://cs1100320008debd5bc.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771","name":"cs11003200092fe0771","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-23T07:08:51.0811120Z","primaryEndpoints":{"dfs":"https://cs11003200092fe0771.dfs.core.windows.net/","web":"https://cs11003200092fe0771.z23.web.core.windows.net/","blob":"https://cs11003200092fe0771.blob.core.windows.net/","queue":"https://cs11003200092fe0771.queue.core.windows.net/","table":"https://cs11003200092fe0771.table.core.windows.net/","file":"https://cs11003200092fe0771.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-22T02:06:18.4217109Z","primaryEndpoints":{"dfs":"https://cs110032000ca62af00.dfs.core.windows.net/","web":"https://cs110032000ca62af00.z23.web.core.windows.net/","blob":"https://cs110032000ca62af00.blob.core.windows.net/","queue":"https://cs110032000ca62af00.queue.core.windows.net/","table":"https://cs110032000ca62af00.table.core.windows.net/","file":"https://cs110032000ca62af00.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47","name":"cs11003200127365c47","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-25T03:10:52.5318146Z","primaryEndpoints":{"dfs":"https://cs11003200127365c47.dfs.core.windows.net/","web":"https://cs11003200127365c47.z23.web.core.windows.net/","blob":"https://cs11003200127365c47.blob.core.windows.net/","queue":"https://cs11003200127365c47.queue.core.windows.net/","table":"https://cs11003200127365c47.table.core.windows.net/","file":"https://cs11003200127365c47.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452","name":"cs1100320012c36c452","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T08:04:25.5198295Z","primaryEndpoints":{"dfs":"https://cs1100320012c36c452.dfs.core.windows.net/","web":"https://cs1100320012c36c452.z23.web.core.windows.net/","blob":"https://cs1100320012c36c452.blob.core.windows.net/","queue":"https://cs1100320012c36c452.queue.core.windows.net/","table":"https://cs1100320012c36c452.table.core.windows.net/","file":"https://cs1100320012c36c452.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst","name":"jlst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-31T03:05:24.8023719Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-31T03:05:24.8023719Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-12-31T03:05:24.7086186Z","primaryEndpoints":{"dfs":"https://jlst.dfs.core.windows.net/","web":"https://jlst.z23.web.core.windows.net/","blob":"https://jlst.blob.core.windows.net/","queue":"https://jlst.queue.core.windows.net/","table":"https://jlst.table.core.windows.net/","file":"https://jlst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs","name":"jlstcs","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-13T06:39:02.4278678Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-13T06:39:02.4278678Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-13T06:39:02.3497160Z","primaryEndpoints":{"dfs":"https://jlstcs.dfs.core.windows.net/","web":"https://jlstcs.z23.web.core.windows.net/","blob":"https://jlstcs.blob.core.windows.net/","queue":"https://jlstcs.queue.core.windows.net/","table":"https://jlstcs.table.core.windows.net/","file":"https://jlstcs.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag","name":"qianwensdiag","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T07:17:09.1138103Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T07:17:09.1138103Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T07:17:09.0514178Z","primaryEndpoints":{"blob":"https://qianwensdiag.blob.core.windows.net/","queue":"https://qianwensdiag.queue.core.windows.net/","table":"https://qianwensdiag.table.core.windows.net/","file":"https://qianwensdiag.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/extmigrate","name":"extmigrate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T08:26:10.5858998Z","primaryEndpoints":{"blob":"https://extmigrate.blob.core.windows.net/","queue":"https://extmigrate.queue.core.windows.net/","table":"https://extmigrate.table.core.windows.net/","file":"https://extmigrate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://extmigrate-secondary.blob.core.windows.net/","queue":"https://extmigrate-secondary.queue.core.windows.net/","table":"https://extmigrate-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengtestsa","name":"fengtestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:10:28.6266623Z","primaryEndpoints":{"dfs":"https://fengtestsa.dfs.core.windows.net/","web":"https://fengtestsa.z19.web.core.windows.net/","blob":"https://fengtestsa.blob.core.windows.net/","queue":"https://fengtestsa.queue.core.windows.net/","table":"https://fengtestsa.table.core.windows.net/","file":"https://fengtestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengtestsa-secondary.dfs.core.windows.net/","web":"https://fengtestsa-secondary.z19.web.core.windows.net/","blob":"https://fengtestsa-secondary.blob.core.windows.net/","queue":"https://fengtestsa-secondary.queue.core.windows.net/","table":"https://fengtestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907/providers/Microsoft.Storage/storageAccounts/6ynst8ytvcms52eviy9cme3e","name":"6ynst8ytvcms52eviy9cme3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"createdby":"azureimagebuilder","magicvalue":"0d819542a3774a2a8709401a7cd09eb8"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-10T11:43:29.9651518Z","primaryEndpoints":{"blob":"https://6ynst8ytvcms52eviy9cme3e.blob.core.windows.net/","queue":"https://6ynst8ytvcms52eviy9cme3e.queue.core.windows.net/","table":"https://6ynst8ytvcms52eviy9cme3e.table.core.windows.net/","file":"https://6ynst8ytvcms52eviy9cme3e.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaeuap","name":"yssaeuap","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-10T03:37:15.2571646Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-10T03:37:15.2571646Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-10T03:37:15.1871764Z","primaryEndpoints":{"dfs":"https://yssaeuap.dfs.core.windows.net/","web":"https://yssaeuap.z3.web.core.windows.net/","blob":"https://yssaeuap.blob.core.windows.net/","queue":"https://yssaeuap.queue.core.windows.net/","table":"https://yssaeuap.table.core.windows.net/","file":"https://yssaeuap.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssaeuap-secondary.dfs.core.windows.net/","web":"https://yssaeuap-secondary.z3.web.core.windows.net/","blob":"https://yssaeuap-secondary.blob.core.windows.net/","queue":"https://yssaeuap-secondary.queue.core.windows.net/","table":"https://yssaeuap-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssanew","name":"yssanew","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-06T09:18:53.7220848Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-06T09:18:53.7220848Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-06T09:18:53.6620997Z","primaryEndpoints":{"dfs":"https://yssanew.dfs.core.windows.net/","web":"https://yssanew.z3.web.core.windows.net/","blob":"https://yssanew.blob.core.windows.net/","queue":"https://yssanew.queue.core.windows.net/","table":"https://yssanew.table.core.windows.net/","file":"https://yssanew.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssanew-secondary.dfs.core.windows.net/","web":"https://yssanew-secondary.z3.web.core.windows.net/","blob":"https://yssanew-secondary.blob.core.windows.net/","queue":"https://yssanew-secondary.queue.core.windows.net/","table":"https://yssanew-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhdefault","name":"zuhdefault","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T09:02:47.5887943Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T09:02:47.5887943Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T09:02:47.5187780Z","primaryEndpoints":{"dfs":"https://zuhdefault.dfs.core.windows.net/","web":"https://zuhdefault.z3.web.core.windows.net/","blob":"https://zuhdefault.blob.core.windows.net/","queue":"https://zuhdefault.queue.core.windows.net/","table":"https://zuhdefault.table.core.windows.net/","file":"https://zuhdefault.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhdefault-secondary.dfs.core.windows.net/","web":"https://zuhdefault-secondary.z3.web.core.windows.net/","blob":"https://zuhdefault-secondary.blob.core.windows.net/","queue":"https://zuhdefault-secondary.queue.core.windows.net/","table":"https://zuhdefault-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtest","name":"zuhtest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"identity":{"type":"ManagedServiceIdentity","userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zuhid"},"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Creating","creationTime":"2021-01-14T07:13:45.0603798Z","primaryEndpoints":{"dfs":"https://zuhtest.dfs.core.windows.net/","web":"https://zuhtest.z3.web.core.windows.net/","blob":"https://zuhtest.blob.core.windows.net/","queue":"https://zuhtest.queue.core.windows.net/","table":"https://zuhtest.table.core.windows.net/","file":"https://zuhtest.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhtest-secondary.dfs.core.windows.net/","web":"https://zuhtest-secondary.z3.web.core.windows.net/","blob":"https://zuhtest-secondary.blob.core.windows.net/","queue":"https://zuhtest-secondary.queue.core.windows.net/","table":"https://zuhtest-secondary.table.core.windows.net/"}}}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '136656'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:18:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-original-request-ids:
+ - d2b1a271-0464-4244-b2ad-144a5c1c3d18
+ - 8a756a5d-a399-4f0c-a149-afc91df4678d
+ - 2a131c13-f727-48d4-aa83-8464d6b91c48
+ - 058bd4b1-8127-4d22-8bd0-1bcce4926475
+ - 1938af65-b5ab-44f0-a75c-041752a957d4
+ - 43285b53-db8f-47e7-be1e-66eddc073369
+ - 08a4094f-fc75-4aef-ac83-50e327a99852
+ - 7c4e9203-2e77-4a63-aab9-3475c1dc8485
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob generate-sas
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -n --account-name -c --permissions --expiry -o
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Storage/storageAccounts/clitestvpngw000002/listKeys?api-version=2021-01-01&$expand=kerb
+ response:
+ body:
+ string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '288'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 05:18:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-Azure-Storage-Resource-Provider/1.0,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-ratelimit-remaining-subscription-resource-requests:
+ - '11998'
+ 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:
+ - -n -g
+ User-Agent:
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_package_capture000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001","name":"cli_test_vpn_gateway_package_capture000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T05:18:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:18:56 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": "westus", "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:
+ - '138'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/publicIPAddresses/pubip1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"pubip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/publicIPAddresses/pubip1\",\r\n
+ \ \"etag\": \"W/\\\"df116708-8c04-42e5-9d08-b0cb15b4434d\\\"\",\r\n \"location\":
+ \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
+ \ \"resourceGuid\": \"927f2571-4486-4b4b-83d8-62bc6952af18\",\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/westus/operations/51aba05e-a1d8-4078-a056-0848640cca00?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '685'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:19:03 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:
+ - 74700e94-269f-4e59-a3b7-b2cff9dcbec5
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network public-ip create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/51aba05e-a1d8-4078-a056-0848640cca00?api-version=2020-11-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:
+ - Thu, 15 Apr 2021 05:19:04 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:
+ - e2aacfb7-dd04-4d0a-ae65-916bf364bc68
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network public-ip create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/publicIPAddresses/pubip1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"pubip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/publicIPAddresses/pubip1\",\r\n
+ \ \"etag\": \"W/\\\"af3b1b0b-26e4-47ac-a73a-558c84ccb632\\\"\",\r\n \"location\":
+ \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"resourceGuid\": \"927f2571-4486-4b4b-83d8-62bc6952af18\",\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:
+ - '686'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:19:04 GMT
+ etag:
+ - W/"af3b1b0b-26e4-47ac-a73a-558c84ccb632"
+ 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:
+ - 095244ad-b544-4758-9326-2f08d6b9a669
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --subnet-name --address-prefix --subnet-prefix
+ User-Agent:
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_package_capture000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001","name":"cli_test_vpn_gateway_package_capture000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T05:18:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:19:05 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": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes":
+ ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "GatewaySubnet", "properties":
+ {"addressPrefix": "10.0.0.0/24"}}]}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '211'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --subnet-name --address-prefix --subnet-prefix
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworks/myvnet1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"myvnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworks/myvnet1\",\r\n
+ \ \"etag\": \"W/\\\"8f50d86a-9765-4146-8e34-6804a7cd434f\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
+ \ \"resourceGuid\": \"861490a4-a732-45a6-83eb-d4da8b5b6433\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\",\r\n
+ \ \"etag\": \"W/\\\"8f50d86a-9765-4146-8e34-6804a7cd434f\\\"\",\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\":
+ \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7e86a6f8-f02e-4584-abf3-cdf5ea41d6f9?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1421'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:19:11 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:
+ - 52d1c96c-50ab-4ae2-be33-61e9ae7599d8
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --subnet-name --address-prefix --subnet-prefix
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7e86a6f8-f02e-4584-abf3-cdf5ea41d6f9?api-version=2020-11-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:
+ - Thu, 15 Apr 2021 05:19:14 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:
+ - aa6d3b1d-f5f4-4189-bf8f-88098c44d360
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --subnet-name --address-prefix --subnet-prefix
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworks/myvnet1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"myvnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworks/myvnet1\",\r\n
+ \ \"etag\": \"W/\\\"037e064f-a462-44c2-b789-78be585cf43c\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"resourceGuid\": \"861490a4-a732-45a6-83eb-d4da8b5b6433\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\",\r\n
+ \ \"etag\": \"W/\\\"037e064f-a462-44c2-b789-78be585cf43c\\\"\",\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
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1423'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:19:14 GMT
+ etag:
+ - W/"037e064f-a462-44c2-b789-78be585cf43c"
+ 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:
+ - cf25a70b-813e-4906-bf23-97da89a55ede
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway_package_capture000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001","name":"cli_test_vpn_gateway_package_capture000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T05:18:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:19:15 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": "westus", "properties": {"ipConfigurations": [{"name": "vnetGatewayConfig0",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet"},
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/publicIPAddresses/pubip1"}}}],
+ "gatewayType": "Vpn", "vpnType": "RouteBased", "activeActive": false, "sku":
+ {"name": "Standard", "tier": "Standard"}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '731'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"81b8ce87-3f96-4432-bba8-eb226fc3d80c\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"5bac7aca-596b-4199-ac17-633928be2380\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"81b8ce87-3f96-4432-bba8-eb226fc3d80c\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_package_capture000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
+ \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
+ \ \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientProtocols\": [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n
+ \ ],\r\n \"vpnAuthenticationTypes\": [],\r\n \"vpnClientRootCertificates\":
+ [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\":
+ [],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\":
+ {\r\n \"asn\": 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\":
+ [\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2850'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:19:21 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:
+ - bf1a48a1-efb8-497b-a096-5cc95ed80b6c
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:19:31 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:
+ - 747c4f7e-653c-4ebc-a2da-ed3a9578a016
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:19:42 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:
+ - 1768f827-6ba0-4ced-b812-b42bae2c5d88
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:20: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:
+ - 405c8aba-f687-43db-8268-84012ccd125a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:20:23 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:
+ - 24efbaef-52ea-444e-8776-2460c8dad37c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:21:03 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:
+ - 7535281b-68ee-407f-8371-0cff9751682e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:21:44 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:
+ - 302b1ef5-7188-4844-83e4-3a6723a11c67
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:23:04 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:
+ - 8ca303ad-ee1a-4507-85e2-c565e479dc16
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:25:47 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:
+ - 46ee171d-7189-48ff-8077-b809bbdeecb2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05: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:
+ - 1ec79209-9878-4d9b-9e1b-f3b6beeedbb7
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:29:08 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:
+ - 4b709077-ff4f-4b9b-b286-36f1aa19e084
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:30:49 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:
+ - 4d700bde-072e-477b-816d-e29eaabd670f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:32:29 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:
+ - 08cb0e80-e7da-479e-9b80-af47237ab1e1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:34: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:
+ - c47669ee-4543-4295-ab9a-424ecbe4c3c1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:35:49 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:
+ - 5009b230-d9b3-4649-a4d1-258ebeba92db
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:37:29 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:
+ - 1e3683e9-e5f8-4cbb-b7e5-c40988fc9088
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:39:10 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:
+ - eca414e9-6bad-4def-af0d-6667859cc846
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:40:50 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:
+ - a6da8027-8898-48d4-ba08-73378a1e6ae3
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:42:30 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:
+ - b446f928-dd94-40f5-86e2-6e6f98dd04b1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:44:11 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:
+ - 014c7a61-271c-4f33-8689-e43bf6b39ea0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:45:51 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:
+ - c0eeadef-fb4b-47ac-bebb-747fff721b93
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:47:31 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:
+ - 6f0625b7-55ba-4555-81bf-219f6fd5958f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:49:11 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:
+ - 0c52939e-d992-415a-b704-690e4b824a29
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:50:53 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:
+ - 9ed43928-d2fb-49a6-bde1-077cadf8ec23
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:52:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 15509d32-694a-423d-aa32-18126bb1689a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:54:13 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:
+ - 7d34f817-bec4-4bc7-adef-5c3fc2f7eeae
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:55:54 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:
+ - f669da97-61f7-43f6-b1a3-1a282014c21a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:57:34 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:
+ - 9286a25b-144a-40b5-a9b7-45cfa19aaa4b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b6542c6-3369-4cd6-889b-66b7e6244823?api-version=2020-11-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:
+ - Thu, 15 Apr 2021 05:59:14 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:
+ - 368972f3-2ea2-4609-847e-13652603afb6
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet --public-ip-address --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"0cc401a9-a5c7-467d-a61e-511cf79442a6\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"5bac7aca-596b-4199-ac17-633928be2380\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"0cc401a9-a5c7-467d-a61e-511cf79442a6\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway_package_capture000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
+ \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
+ \ \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"bgpSettings\":
+ {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n
+ \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"104.42.170.51\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2710'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:59:14 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:
+ - 3db0abdf-eaad-47ac-8a48-837b21f50480
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway packet-capture start
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '2'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/startPacketCapture?api-version=2020-11-01
+ response:
+ body:
+ string: ''
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/65f71f87-3d61-407d-865e-65a22b370b95?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Thu, 15 Apr 2021 05:59:16 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/65f71f87-3d61-407d-865e-65a22b370b95?api-version=2020-11-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - c3d8842d-92d9-4045-83aa-e38f5c95b42d
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway packet-capture start
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/65f71f87-3d61-407d-865e-65a22b370b95?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:59:26 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:
+ - 81c8ecf1-81ff-401b-9bec-db7b34ea0157
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway packet-capture start
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/65f71f87-3d61-407d-865e-65a22b370b95?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:59:36 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:
+ - b5763ddf-37f6-4336-8b35-6b0e42ba3083
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway packet-capture start
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/65f71f87-3d61-407d-865e-65a22b370b95?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\":
+ \"{\\\"Status\\\":\\\"Successful\\\",\\\"Data\\\":\\\"\\\"}\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '113'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:59:57 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:
+ - 4ff494e6-8171-4444-9b28-5866afbb5bb0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway packet-capture start
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/65f71f87-3d61-407d-865e-65a22b370b95?api-version=2020-11-01
+ response:
+ body:
+ string: '"{\"Status\":\"Successful\",\"Data\":\"\"}"'
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/65f71f87-3d61-407d-865e-65a22b370b95?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '43'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:59:57 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/65f71f87-3d61-407d-865e-65a22b370b95?api-version=2020-11-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - c3d8842d-92d9-4045-83aa-e38f5c95b42d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"sasUrl": "https://clitestvpngw000002.blob.azure.com/clitestvpngw000003?se=2021-04-15T08%3A18Z&sp=racwd&sv=2018-11-09&sr=b&sig=xBni%2BBqRf16ODaSeIK4F%2B79BcyyiYSX%2F3QILRoVJwDU%3D"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway packet-capture stop
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '194'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --sas-url
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capture000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/stopPacketCapture?api-version=2020-11-01
+ response:
+ body:
+ string: ''
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/836e7e5f-9b6e-4f42-943d-9f51d0ba03d7?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Thu, 15 Apr 2021 05:59:58 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/836e7e5f-9b6e-4f42-943d-9f51d0ba03d7?api-version=2020-11-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - c531e166-4d0a-476d-acec-4dccc8aa32e9
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway packet-capture stop
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --sas-url
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/836e7e5f-9b6e-4f42-943d-9f51d0ba03d7?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 06:00:08 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:
+ - 927889fb-fb0f-4c2f-b31a-7e42a955c7fc
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway packet-capture stop
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --sas-url
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/836e7e5f-9b6e-4f42-943d-9f51d0ba03d7?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 06:00:18 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:
+ - f6f3b185-b2ea-48f7-98c3-f552e901a08a
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway packet-capture stop
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --sas-url
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/836e7e5f-9b6e-4f42-943d-9f51d0ba03d7?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 06:00:38 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:
+ - 23e4f64a-a99b-4a41-8dc9-64c5092f0d17
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway packet-capture stop
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --sas-url
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/836e7e5f-9b6e-4f42-943d-9f51d0ba03d7?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"Failed\",\r\n \"error\": {\r\n \"code\": \"NoPacketCaptureResponseDataFound\",\r\n
+ \ \"message\": \"An internal error occured. The response did not contain
+ any data. Please check storage for the capture.\",\r\n \"details\": []\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '237'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 06:01: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:
+ - e16117e7-df59-412c-8c72-be39d30a2d47
+ status:
+ code: 200
+ message: OK
version: 1
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 e1bf170ef18..ef71c820096 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
@@ -12,6 +12,7 @@
from azure_devtools.scenario_tests import AllowLargeResponse
from azure.cli.core.commands.client_factory import get_subscription_id
from azure.cli.core.profiles import supported_api_version, ResourceType
+from azure.core.exceptions import HttpResponseError
from azure.cli.testsdk import (
ScenarioTest, LiveScenarioTest, LocalContextScenarioTest, ResourceGroupPreparer, StorageAccountPreparer, live_only,
@@ -4216,8 +4217,9 @@ def test_network_vpn_gateway_disconnect_connects(self, resource_group):
'--vnet-gateway2 {gw1} --vnet-gateway1 {gw2}')
self.cmd('network vnet-gateway disconnect-vpn-connections -g {rg} -n {gw1} --vpn-connections {conn12}')
+ @AllowLargeResponse()
@ResourceGroupPreparer(name_prefix='cli_test_vpn_gateway_package_capture', location='westus')
- @StorageAccountPreparer(name_prefix='clitestvpngw', location='westus')
+ @StorageAccountPreparer(name_prefix='clitestvpngw')
def test_network_vpn_gateway_package_capture(self, resource_group, storage_account):
from datetime import datetime, timedelta
self.kwargs.update({
@@ -4226,13 +4228,13 @@ def test_network_vpn_gateway_package_capture(self, resource_group, storage_accou
'gw1_sku': 'Standard',
'ip1': 'pubip1',
'storage_account': storage_account,
- 'ctn': 'vpngw',
+ 'ctn': self.create_random_name(prefix='clitestvpngw', length=24),
'expiry': (datetime.utcnow() + timedelta(hours=3)).strftime('%Y-%m-%dT%H:%MZ')
})
- self.cmd('storage container create -n {ctn} --account-name {storage_account}')
+ self.cmd('storage container create --account-name {storage_account} --name {ctn}')
sas = self.cmd(
- 'storage blob generate-sas -n {src} --account-name {storage_account} -c {ctn} --permissions acrwd --expiry {expiry} -otsv').output.strip()
+ 'storage blob generate-sas -n src --account-name {storage_account} -c {ctn} --permissions acrwd --expiry {expiry} -otsv').output.strip()
self.kwargs['sas_url'] = 'https://{}.blob.azure.com/{}?{}'.format(self.kwargs['storage_account'],
self.kwargs['ctn'], sas)
From 3a41a79550a1a21cce0acd37582c9a18ad7741ee Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Thu, 15 Apr 2021 14:36:25 +0800
Subject: [PATCH 07/19] remove recording processor sas token
---
.../tests/latest/recording_processors.py | 28 +++++++++++++++++++
...t_network_vpn_gateway_package_capture.yaml | 2 +-
.../tests/latest/test_network_commands.py | 10 ++++++-
3 files changed, 38 insertions(+), 2 deletions(-)
create mode 100644 src/azure-cli/azure/cli/command_modules/network/tests/latest/recording_processors.py
diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recording_processors.py b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recording_processors.py
new file mode 100644
index 00000000000..0a8017be163
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recording_processors.py
@@ -0,0 +1,28 @@
+# --------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for license information.
+# --------------------------------------------------------------------------------------------
+from azure_devtools.scenario_tests import RecordingProcessor
+
+def byte_to_str(byte_or_str):
+ return str(byte_or_str, 'utf-8') if isinstance(byte_or_str, bytes) else byte_or_str
+
+
+class StorageAccountSASReplacer(RecordingProcessor):
+ SAS_REPLACEMENT = 'se=2020-10-27&sp=w&sv=2018-11-09&sr=c'
+
+ def __init__(self):
+ self._sas_tokens = []
+
+ def reset(self):
+ self._sas_tokens = []
+
+ def add_sas_token(self, sas_token):
+ self._sas_tokens.append(sas_token)
+
+ def process_request(self, request):
+ for sas_token in self._sas_tokens:
+ body_string = byte_to_str(request.body)
+ if sas_token in body_string:
+ request.body = body_string.replace(sas_token, self.SAS_REPLACEMENT)
+ return request
diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_package_capture.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_package_capture.yaml
index 24e895abb3a..fff73f1f770 100644
--- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_package_capture.yaml
+++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway_package_capture.yaml
@@ -2514,7 +2514,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"sasUrl": "https://clitestvpngw000002.blob.azure.com/clitestvpngw000003?se=2021-04-15T08%3A18Z&sp=racwd&sv=2018-11-09&sr=b&sig=xBni%2BBqRf16ODaSeIK4F%2B79BcyyiYSX%2F3QILRoVJwDU%3D"}'
+ body: '{"sasUrl": "https://clitestvpngw000002.blob.azure.com/clitestvpngw000003?se=2020-10-27&sp=w&sv=2018-11-09&sr=c"}'
headers:
Accept:
- application/json
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 ef71c820096..871f8fa53bb 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
@@ -13,6 +13,7 @@
from azure.cli.core.commands.client_factory import get_subscription_id
from azure.cli.core.profiles import supported_api_version, ResourceType
from azure.core.exceptions import HttpResponseError
+from .recording_processors import StorageAccountSASReplacer
from azure.cli.testsdk import (
ScenarioTest, LiveScenarioTest, LocalContextScenarioTest, ResourceGroupPreparer, StorageAccountPreparer, live_only,
@@ -4045,7 +4046,13 @@ def test_network_active_active_vnet_connection(self, resource_group):
self.cmd('network vpn-connection create -g {rg} -n {conn21} --vnet-gateway1 {gw2} --vnet-gateway2 {gw1} --shared-key {key} --enable-bgp')
-class NetworkVpnGatewayScenarioTest(ScenarioTest):
+class NetworkVpnGatewayScenarioTest(ScenarioTest, StorageAccountSASReplacer):
+
+ def __init__(self, method_name):
+ self.sas_replacer = StorageAccountSASReplacer()
+ super(NetworkVpnGatewayScenarioTest, self).__init__(method_name, recording_processors=[
+ self.sas_replacer
+ ])
@ResourceGroupPreparer(name_prefix='cli_test_vpn_gateway')
def test_network_vpn_gateway(self, resource_group):
@@ -4235,6 +4242,7 @@ def test_network_vpn_gateway_package_capture(self, resource_group, storage_accou
self.cmd('storage container create --account-name {storage_account} --name {ctn}')
sas = self.cmd(
'storage blob generate-sas -n src --account-name {storage_account} -c {ctn} --permissions acrwd --expiry {expiry} -otsv').output.strip()
+ self.sas_replacer.add_sas_token(sas)
self.kwargs['sas_url'] = 'https://{}.blob.azure.com/{}?{}'.format(self.kwargs['storage_account'],
self.kwargs['ctn'], sas)
From 677fe17fa75dedfa6bf4209c5947181562c39d19 Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Thu, 15 Apr 2021 14:46:16 +0800
Subject: [PATCH 08/19] fix linter issues
---
src/azure-cli/azure/cli/command_modules/network/commands.py | 2 +-
.../network/tests/latest/test_network_commands.py | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/azure-cli/azure/cli/command_modules/network/commands.py b/src/azure-cli/azure/cli/command_modules/network/commands.py
index 3fc96a7d939..ce4c79582f7 100644
--- a/src/azure-cli/azure/cli/command_modules/network/commands.py
+++ b/src/azure-cli/azure/cli/command_modules/network/commands.py
@@ -1346,7 +1346,7 @@ def _make_singular(value):
with self.command_group('network vnet-gateway vpn-client ipsec-policy', network_vgw_sdk, client_factory=cf_virtual_network_gateways, is_preview=True, min_api='2018-02-01') as g:
g.custom_command('set', 'set_vpn_client_ipsec_policy', supports_no_wait=True)
- g.command('show', 'begin_get_vpnclient_ipsec_parameters')
+ g.show_command('show', 'begin_get_vpnclient_ipsec_parameters')
# with self.command_group
diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_network_commands.py
index 871f8fa53bb..d629e150b33 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
@@ -4251,6 +4251,7 @@ def test_network_vpn_gateway_package_capture(self, resource_group, storage_accou
self.cmd('network vnet-gateway create -g {rg} -n {gw1} --vnet {vnet1} --public-ip-address {ip1} --sku {gw1_sku}')
output = self.cmd('network vnet-gateway packet-capture start -g {rg} -n {gw1}').output.strip()
self.assertTrue('Successful' in output, 'Expected Successful in output.\nActual: {}'.format(output))
+ # currently we cannot create traffic by cli command. So it will return an error when stop.
with self.assertRaisesRegexp(HttpResponseError, 'The response did not contain any data'):
self.cmd('network vnet-gateway packet-capture stop -g {rg} -n {gw1} --sas-url {sas_url}')
From 78420027b68826a30f11597df50e2682042a3c1b Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Thu, 15 Apr 2021 16:20:01 +0800
Subject: [PATCH 09/19] record test
---
.../recordings/test_network_vpn_gateway.yaml | 2767 ++++++++++-------
.../tests/latest/test_network_commands.py | 2 +-
2 files changed, 1627 insertions(+), 1142 deletions(-)
diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway.yaml
index 177bfb8ab55..f4ecf65591c 100644
--- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway.yaml
+++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vpn_gateway.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T06:21:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:53:36Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:12 GMT
+ - Thu, 15 Apr 2021 06:53:41 GMT
expires:
- '-1'
pragma:
@@ -63,15 +63,15 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"pubip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\",\r\n
- \ \"etag\": \"W/\\\"be7c8895-4c98-4ea9-ad9c-d5893144d76c\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"53e824a6-faaf-40b2-986f-601dd06a8a18\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"09ad5d4d-2b81-4575-9cab-c045c4d6f95e\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"7fd0bf76-e4ac-4840-99b4-65440bebb219\",\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
@@ -80,7 +80,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/936f7296-bcb7-4eb8-bcd7-a5992d3cc606?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ca3d9364-b03e-428e-bdbd-fe1a69435233?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -88,7 +88,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:16 GMT
+ - Thu, 15 Apr 2021 06:53:48 GMT
expires:
- '-1'
pragma:
@@ -101,9 +101,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f7ebe3be-bbd4-4811-9034-ee85b236209d
+ - 0fa17d5b-5387-4087-a0ee-b399f7c69680
x-ms-ratelimit-remaining-subscription-writes:
- - '1164'
+ - '1199'
status:
code: 201
message: Created
@@ -121,9 +121,9 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/936f7296-bcb7-4eb8-bcd7-a5992d3cc606?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ca3d9364-b03e-428e-bdbd-fe1a69435233?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -135,7 +135,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:18 GMT
+ - Thu, 15 Apr 2021 06:53:50 GMT
expires:
- '-1'
pragma:
@@ -152,7 +152,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 21918f03-2073-4990-b729-4209886fa983
+ - 1612059b-6eef-44a1-8f03-1e9d1b2bb3f7
status:
code: 200
message: OK
@@ -170,15 +170,15 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"pubip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\",\r\n
- \ \"etag\": \"W/\\\"457aa5b9-b6c3-4640-afa5-226b17da195b\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"d7097e74-4313-4a7b-b2d4-a6dab9ea11e5\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"09ad5d4d-2b81-4575-9cab-c045c4d6f95e\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"7fd0bf76-e4ac-4840-99b4-65440bebb219\",\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
@@ -191,9 +191,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:18 GMT
+ - Thu, 15 Apr 2021 06:53:50 GMT
etag:
- - W/"457aa5b9-b6c3-4640-afa5-226b17da195b"
+ - W/"d7097e74-4313-4a7b-b2d4-a6dab9ea11e5"
expires:
- '-1'
pragma:
@@ -210,7 +210,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 3ce92b5b-bfa5-44bf-ae95-22841ad5c20b
+ - 39a3c5d6-6155-491e-9ce8-2c1c4d73fbfd
status:
code: 200
message: OK
@@ -228,15 +228,15 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T06:21:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:53:36Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -245,7 +245,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:18 GMT
+ - Thu, 15 Apr 2021 06:53:50 GMT
expires:
- '-1'
pragma:
@@ -278,15 +278,15 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\",\r\n
- \ \"etag\": \"W/\\\"6b26ac50-936c-493b-b9ff-ecd79c6e18c5\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"59f1a067-c0da-4f98-b15c-79d96865abe4\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"a7fc00be-64c9-4263-897e-9124c0417d2d\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"c6650f8d-79d2-44c4-91f3-0a498808c306\",\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
@@ -295,7 +295,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ddc83e45-e2a2-4853-b4c2-8716f25db71f?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e33171b3-bc90-43f8-8436-1b77dea95fb3?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -303,7 +303,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:22 GMT
+ - Thu, 15 Apr 2021 06:53:56 GMT
expires:
- '-1'
pragma:
@@ -316,9 +316,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 4b3dec80-29e3-40e7-96ae-294421b88db8
+ - 4337e649-9989-4b70-869c-52f4275c3c1e
x-ms-ratelimit-remaining-subscription-writes:
- - '1173'
+ - '1195'
status:
code: 201
message: Created
@@ -336,9 +336,9 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ddc83e45-e2a2-4853-b4c2-8716f25db71f?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e33171b3-bc90-43f8-8436-1b77dea95fb3?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -350,7 +350,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:23 GMT
+ - Thu, 15 Apr 2021 06:53:57 GMT
expires:
- '-1'
pragma:
@@ -367,7 +367,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - d47edb1d-ed7b-4a96-8cb7-872d0d348739
+ - 67424b27-0672-4d2f-a1ac-c18c3e5f4973
status:
code: 200
message: OK
@@ -385,15 +385,15 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\",\r\n
- \ \"etag\": \"W/\\\"8091905e-9728-4213-9c0e-cf8c941c904c\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"69657006-2f66-4554-aeb3-b0caa66852a6\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"a7fc00be-64c9-4263-897e-9124c0417d2d\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"c6650f8d-79d2-44c4-91f3-0a498808c306\",\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
@@ -406,9 +406,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:24 GMT
+ - Thu, 15 Apr 2021 06:53:57 GMT
etag:
- - W/"8091905e-9728-4213-9c0e-cf8c941c904c"
+ - W/"69657006-2f66-4554-aeb3-b0caa66852a6"
expires:
- '-1'
pragma:
@@ -425,7 +425,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a131f072-a684-473d-93f2-9a8787772867
+ - 305b3fab-5dc0-410a-897c-650cf34dfb0b
status:
code: 200
message: OK
@@ -443,15 +443,15 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T06:21:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:53:36Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -460,7 +460,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:25 GMT
+ - Thu, 15 Apr 2021 06:53:58 GMT
expires:
- '-1'
pragma:
@@ -493,15 +493,15 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"pubip3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\",\r\n
- \ \"etag\": \"W/\\\"f14b943d-261c-4c6b-be37-09bedbc07858\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"3aa388f1-ffbc-4c74-a5b6-7ddea63421b0\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"d21e7433-39a8-4f82-bdb9-2a14a9662ff3\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"e031c4f9-2901-490d-b90c-b5c62f03f2ac\",\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
@@ -510,7 +510,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15309eb9-bcb4-4376-99d6-60423bda7bbd?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e442baf6-9a1e-413e-b840-7f9590508726?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -518,7 +518,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:30 GMT
+ - Thu, 15 Apr 2021 06:54:03 GMT
expires:
- '-1'
pragma:
@@ -531,9 +531,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 0337ea3a-c9ac-4cbf-bc0c-096035bd3e4f
+ - 11dbf2a0-944c-4955-bc8c-cf3b9f871524
x-ms-ratelimit-remaining-subscription-writes:
- - '1171'
+ - '1199'
status:
code: 201
message: Created
@@ -551,9 +551,9 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/15309eb9-bcb4-4376-99d6-60423bda7bbd?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e442baf6-9a1e-413e-b840-7f9590508726?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -565,7 +565,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:32 GMT
+ - Thu, 15 Apr 2021 06:54:05 GMT
expires:
- '-1'
pragma:
@@ -582,7 +582,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - de4c126a-a7f3-4724-93be-4bcbd70458e3
+ - 85066380-7bfa-4a0d-a771-561d1d2e1ff9
status:
code: 200
message: OK
@@ -600,15 +600,15 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"pubip3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\",\r\n
- \ \"etag\": \"W/\\\"e5c02f1e-5059-4f7f-b679-4c5aa6b3ecce\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"089ca289-165b-435b-8a7f-8c084ecb2484\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"d21e7433-39a8-4f82-bdb9-2a14a9662ff3\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"e031c4f9-2901-490d-b90c-b5c62f03f2ac\",\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
@@ -621,9 +621,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:32 GMT
+ - Thu, 15 Apr 2021 06:54:05 GMT
etag:
- - W/"e5c02f1e-5059-4f7f-b679-4c5aa6b3ecce"
+ - W/"089ca289-165b-435b-8a7f-8c084ecb2484"
expires:
- '-1'
pragma:
@@ -640,7 +640,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - bfd2b89b-9d19-4aae-85ed-9c2e5955d00b
+ - 41e3705b-359a-4ed3-a51f-7227896d2e91
status:
code: 200
message: OK
@@ -658,15 +658,15 @@ interactions:
ParameterSetName:
- -g -n --subnet-name --address-prefix --subnet-prefix
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T06:21:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:53:36Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -675,7 +675,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:33 GMT
+ - Thu, 15 Apr 2021 06:54:06 GMT
expires:
- '-1'
pragma:
@@ -709,21 +709,21 @@ interactions:
ParameterSetName:
- -g -n --subnet-name --address-prefix --subnet-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"myvnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1\",\r\n
- \ \"etag\": \"W/\\\"77169146-0c01-4c9e-82c3-c4068ff3249a\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7ebb8972-b111-4c24-8b0c-9aec248b48ee\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"7e417550-caf7-4112-9843-7ad386aa2239\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"20d8eefe-c7be-4a55-b00a-7f19dc9e38f0\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"77169146-0c01-4c9e-82c3-c4068ff3249a\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7ebb8972-b111-4c24-8b0c-9aec248b48ee\\\"\",\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\":
@@ -734,7 +734,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cc10260-7fcd-4ebd-9bb3-985d732b2415?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fe6c28fe-4646-40d2-b55c-6542a5842a65?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -742,7 +742,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:39 GMT
+ - Thu, 15 Apr 2021 06:54:12 GMT
expires:
- '-1'
pragma:
@@ -755,9 +755,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5d546224-8560-4233-b0d8-70d803e391ea
+ - bea47b7d-6b77-4f3f-b96e-ece7082585b9
x-ms-ratelimit-remaining-subscription-writes:
- - '1167'
+ - '1199'
status:
code: 201
message: Created
@@ -775,9 +775,9 @@ interactions:
ParameterSetName:
- -g -n --subnet-name --address-prefix --subnet-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2cc10260-7fcd-4ebd-9bb3-985d732b2415?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fe6c28fe-4646-40d2-b55c-6542a5842a65?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -789,7 +789,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:42 GMT
+ - Thu, 15 Apr 2021 06:54:15 GMT
expires:
- '-1'
pragma:
@@ -806,7 +806,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 449ff8e6-577b-4c04-9b37-f9ec773c6b7b
+ - 77cf0252-cd50-4de5-8f06-31893f5b5b5e
status:
code: 200
message: OK
@@ -824,21 +824,21 @@ interactions:
ParameterSetName:
- -g -n --subnet-name --address-prefix --subnet-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"myvnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1\",\r\n
- \ \"etag\": \"W/\\\"cd816e72-0bcf-4574-9a3c-320094884e6b\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"5efdd613-8afd-4f37-b75f-a6d570d0527e\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"7e417550-caf7-4112-9843-7ad386aa2239\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"20d8eefe-c7be-4a55-b00a-7f19dc9e38f0\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"cd816e72-0bcf-4574-9a3c-320094884e6b\\\"\",\r\n
+ \ \"etag\": \"W/\\\"5efdd613-8afd-4f37-b75f-a6d570d0527e\\\"\",\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\":
@@ -853,9 +853,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:43 GMT
+ - Thu, 15 Apr 2021 06:54:16 GMT
etag:
- - W/"cd816e72-0bcf-4574-9a3c-320094884e6b"
+ - W/"5efdd613-8afd-4f37-b75f-a6d570d0527e"
expires:
- '-1'
pragma:
@@ -872,7 +872,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 44b2ac39-f50a-4e39-9e8a-a5fe91476289
+ - 60fbcefa-9def-44aa-92f4-12a164edc754
status:
code: 200
message: OK
@@ -890,15 +890,15 @@ interactions:
ParameterSetName:
- -g -n --subnet-name --address-prefix
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T06:21:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:53:36Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -907,7 +907,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:43 GMT
+ - Thu, 15 Apr 2021 06:54:16 GMT
expires:
- '-1'
pragma:
@@ -941,21 +941,21 @@ interactions:
ParameterSetName:
- -g -n --subnet-name --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"myvnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2\",\r\n
- \ \"etag\": \"W/\\\"6e2b947e-863b-42b3-a403-08284cafc900\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"779f6566-3a85-4670-915b-9fb0411e82bb\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"8a844dce-0a06-4954-a901-00d2a42bc957\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"85d141fa-512e-4fe3-b4c6-fecac5d895a3\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"6e2b947e-863b-42b3-a403-08284cafc900\\\"\",\r\n
+ \ \"etag\": \"W/\\\"779f6566-3a85-4670-915b-9fb0411e82bb\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"addressPrefix\": \"10.1.0.0/24\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -966,7 +966,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6cb2bca-c07f-41be-ae2d-8d853d261728?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ddee0137-c61e-4c7a-9521-e072d4a3f78a?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -974,7 +974,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:48 GMT
+ - Thu, 15 Apr 2021 06:54:22 GMT
expires:
- '-1'
pragma:
@@ -987,9 +987,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5ceb0dd2-0d62-4d56-a694-c67a33052d40
+ - 64800ae8-481d-4e49-9ed5-41483056f645
x-ms-ratelimit-remaining-subscription-writes:
- - '1157'
+ - '1199'
status:
code: 201
message: Created
@@ -1007,9 +1007,9 @@ interactions:
ParameterSetName:
- -g -n --subnet-name --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6cb2bca-c07f-41be-ae2d-8d853d261728?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ddee0137-c61e-4c7a-9521-e072d4a3f78a?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -1021,7 +1021,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:52 GMT
+ - Thu, 15 Apr 2021 06:54:25 GMT
expires:
- '-1'
pragma:
@@ -1038,7 +1038,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 87a91c02-9575-4d8d-964c-eef01bbcdbaa
+ - f48e44ab-87d7-45be-8489-f75bc116e279
status:
code: 200
message: OK
@@ -1056,21 +1056,21 @@ interactions:
ParameterSetName:
- -g -n --subnet-name --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"myvnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2\",\r\n
- \ \"etag\": \"W/\\\"9583dd8a-1853-4b25-8ac0-c40085b598e8\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"a41951eb-1eab-4f0b-8119-2b37d3f86e2b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"8a844dce-0a06-4954-a901-00d2a42bc957\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"85d141fa-512e-4fe3-b4c6-fecac5d895a3\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"9583dd8a-1853-4b25-8ac0-c40085b598e8\\\"\",\r\n
+ \ \"etag\": \"W/\\\"a41951eb-1eab-4f0b-8119-2b37d3f86e2b\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.1.0.0/24\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -1085,9 +1085,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:53 GMT
+ - Thu, 15 Apr 2021 06:54:25 GMT
etag:
- - W/"9583dd8a-1853-4b25-8ac0-c40085b598e8"
+ - W/"a41951eb-1eab-4f0b-8119-2b37d3f86e2b"
expires:
- '-1'
pragma:
@@ -1104,7 +1104,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 092df703-d637-46a0-b036-b0f25f9cf29b
+ - 2f44d0c6-2b7a-4018-a1b9-40e04e5f8131
status:
code: 200
message: OK
@@ -1122,15 +1122,15 @@ interactions:
ParameterSetName:
- -g -n --subnet-name --address-prefix
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T06:21:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:53:36Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1139,7 +1139,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:53 GMT
+ - Thu, 15 Apr 2021 06:54:25 GMT
expires:
- '-1'
pragma:
@@ -1173,21 +1173,21 @@ interactions:
ParameterSetName:
- -g -n --subnet-name --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"myvnet3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3\",\r\n
- \ \"etag\": \"W/\\\"efd39670-9999-4c3d-8b31-ba0d6c8cead9\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"03b9c9f3-60b1-42d7-8375-66cbee89620d\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"6bc09a28-8cb6-487e-8b0a-a275ad556b6b\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"aed2c62c-eda2-4e14-be3e-077a1fd35f5f\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.2.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"efd39670-9999-4c3d-8b31-ba0d6c8cead9\\\"\",\r\n
+ \ \"etag\": \"W/\\\"03b9c9f3-60b1-42d7-8375-66cbee89620d\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"addressPrefix\": \"10.2.0.0/24\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -1198,7 +1198,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/82f2aabe-2c26-462b-a837-54351dddd7be?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fd0e5ea8-8284-4683-98f9-b409e8c9f705?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -1206,7 +1206,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:21:59 GMT
+ - Thu, 15 Apr 2021 06:54:32 GMT
expires:
- '-1'
pragma:
@@ -1219,9 +1219,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c1e522db-9304-4f8a-be9a-9d4a83559a9d
+ - c79b7f4b-d968-4be2-9b94-59a3beec5f55
x-ms-ratelimit-remaining-subscription-writes:
- - '1161'
+ - '1199'
status:
code: 201
message: Created
@@ -1239,9 +1239,9 @@ interactions:
ParameterSetName:
- -g -n --subnet-name --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/82f2aabe-2c26-462b-a837-54351dddd7be?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fd0e5ea8-8284-4683-98f9-b409e8c9f705?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -1253,7 +1253,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:22:02 GMT
+ - Thu, 15 Apr 2021 06:54:35 GMT
expires:
- '-1'
pragma:
@@ -1270,7 +1270,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f0519b02-e3cf-4442-8aa1-9c5001a31ff7
+ - 660e7ff6-6ed4-464d-9fee-80ae1690f626
status:
code: 200
message: OK
@@ -1288,21 +1288,21 @@ interactions:
ParameterSetName:
- -g -n --subnet-name --address-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"myvnet3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3\",\r\n
- \ \"etag\": \"W/\\\"3513ce5b-c68c-4bdb-bf06-2085182d903f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"d15e65c0-8ae0-47af-922a-0120df8e586b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"6bc09a28-8cb6-487e-8b0a-a275ad556b6b\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"aed2c62c-eda2-4e14-be3e-077a1fd35f5f\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.2.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"3513ce5b-c68c-4bdb-bf06-2085182d903f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"d15e65c0-8ae0-47af-922a-0120df8e586b\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.2.0.0/24\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -1317,9 +1317,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:22:02 GMT
+ - Thu, 15 Apr 2021 06:54:35 GMT
etag:
- - W/"3513ce5b-c68c-4bdb-bf06-2085182d903f"
+ - W/"d15e65c0-8ae0-47af-922a-0120df8e586b"
expires:
- '-1'
pragma:
@@ -1336,7 +1336,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b198581e-77b3-4212-8273-268927ca0859
+ - f86913f6-7153-4047-98ba-02391d85a2d3
status:
code: 200
message: OK
@@ -1354,15 +1354,15 @@ interactions:
ParameterSetName:
- -g -n --vnet --public-ip-address --gateway-type --vpn-gateway-generation
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T06:21:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:53:36Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1371,7 +1371,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:22:03 GMT
+ - Thu, 15 Apr 2021 06:54:36 GMT
expires:
- '-1'
pragma:
@@ -1400,15 +1400,15 @@ interactions:
- -g -n --vnet --public-ip-address --vpn-gateway-generation --custom-routes
--no-wait
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T06:21:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:53:36Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1417,7 +1417,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:22:03 GMT
+ - Thu, 15 Apr 2021 06:54:36 GMT
expires:
- '-1'
pragma:
@@ -1455,20 +1455,20 @@ interactions:
- -g -n --vnet --public-ip-address --vpn-gateway-generation --custom-routes
--no-wait
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1493,7 +1493,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f59518ea-5ed0-47ce-adae-60afa90966b5?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4d772996-bbe3-4aa3-9ef3-47ae7d6437e4?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -1501,7 +1501,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:22:09 GMT
+ - Thu, 15 Apr 2021 06:54:43 GMT
expires:
- '-1'
pragma:
@@ -1514,9 +1514,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - fe060f62-51bd-492c-add4-947d9a7119c8
+ - 5a084741-3d7c-44b5-b180-ba5301fb43e9
x-ms-ratelimit-remaining-subscription-writes:
- - '1174'
+ - '1199'
status:
code: 201
message: Created
@@ -1534,15 +1534,15 @@ interactions:
ParameterSetName:
- -g -n --vnet --public-ip-address --no-wait
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T06:21:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:53:36Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1551,7 +1551,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:22:10 GMT
+ - Thu, 15 Apr 2021 06:54:43 GMT
expires:
- '-1'
pragma:
@@ -1587,20 +1587,20 @@ interactions:
ParameterSetName:
- -g -n --vnet --public-ip-address --no-wait
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"0d092fe2-50da-4e34-add9-510ea68e2853\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"c78f3890-3d6e-49f9-a268-e7d4fadfb686\",\r\n \"packetCaptureDiagnosticState\":
+ \"c23d09b4-281b-4afd-a436-7098ff4fcbbd\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n
+ \ \"etag\": \"W/\\\"0d092fe2-50da-4e34-add9-510ea68e2853\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1624,7 +1624,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ea546f9-187e-41e0-9d8b-b8010b26494a?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ba51777e-597d-4d7b-b24c-cc93e048bff9?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -1632,7 +1632,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:22:16 GMT
+ - Thu, 15 Apr 2021 06:54:47 GMT
expires:
- '-1'
pragma:
@@ -1645,9 +1645,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1a6df5cd-5860-4fc8-b46a-ffd8b7bdeaa3
+ - a6a29198-416f-49cd-aae4-0b7247e309c3
x-ms-ratelimit-remaining-subscription-writes:
- - '1166'
+ - '1198'
status:
code: 201
message: Created
@@ -1666,15 +1666,15 @@ interactions:
- -g -n --vnet --public-ip-address --no-wait --sku --asn --bgp-peering-address
--peer-weight
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T06:21:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:53:36Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1683,7 +1683,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:22:16 GMT
+ - Thu, 15 Apr 2021 06:54:48 GMT
expires:
- '-1'
pragma:
@@ -1721,20 +1721,20 @@ interactions:
- -g -n --vnet --public-ip-address --no-wait --sku --asn --bgp-peering-address
--peer-weight
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\",\r\n
- \ \"etag\": \"W/\\\"b6c54581-7ba6-4fb9-b048-adb4e48390d0\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"7b77e830-48cb-4038-a63f-c98faa7e8e38\",\r\n \"packetCaptureDiagnosticState\":
+ \"79eea2b6-e1c8-4fa0-a3d8-47b5eb1c2d10\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"b6c54581-7ba6-4fb9-b048-adb4e48390d0\\\"\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1759,7 +1759,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/487a997c-eb51-43df-b8b6-017b452790ec?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/082e66bf-e08f-48b5-901d-f422de365ab5?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -1767,7 +1767,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:22:21 GMT
+ - Thu, 15 Apr 2021 06:54:54 GMT
expires:
- '-1'
pragma:
@@ -1780,9 +1780,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 0f534c47-ca7f-4e9c-abf9-c82e25b8da62
+ - 3c6ea2ee-2c02-4344-a9ff-065b96065b13
x-ms-ratelimit-remaining-subscription-writes:
- - '1164'
+ - '1199'
status:
code: 201
message: Created
@@ -1800,20 +1800,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1838,7 +1838,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:22:23 GMT
+ - Thu, 15 Apr 2021 06:54:54 GMT
expires:
- '-1'
pragma:
@@ -1855,7 +1855,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 406cc52e-1436-4dd7-a606-c105429c042b
+ - d141e371-39bb-49b3-a2b3-ab1961d0b347
status:
code: 200
message: OK
@@ -1873,20 +1873,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1911,7 +1911,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:22:53 GMT
+ - Thu, 15 Apr 2021 06:55:24 GMT
expires:
- '-1'
pragma:
@@ -1928,7 +1928,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b71ded94-c4e3-47a4-aafe-5591b4347d09
+ - 5f1df132-c201-4155-9572-dc9c0d659a98
status:
code: 200
message: OK
@@ -1946,20 +1946,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1984,7 +1984,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:23:24 GMT
+ - Thu, 15 Apr 2021 06:55:55 GMT
expires:
- '-1'
pragma:
@@ -2001,7 +2001,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f8d02700-a27e-42fa-8b9d-0aefca6cd4ee
+ - 73a87ef5-f3f6-4ac3-ba8a-529813962735
status:
code: 200
message: OK
@@ -2019,20 +2019,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2057,7 +2057,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:23:55 GMT
+ - Thu, 15 Apr 2021 06:56:25 GMT
expires:
- '-1'
pragma:
@@ -2074,7 +2074,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f0035e77-f44c-4db8-ad70-790f60fa8adc
+ - 23a6e0a7-b27f-46da-a2a2-a2bf035ec6ad
status:
code: 200
message: OK
@@ -2092,20 +2092,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2130,7 +2130,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:24:25 GMT
+ - Thu, 15 Apr 2021 06:56:55 GMT
expires:
- '-1'
pragma:
@@ -2147,7 +2147,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9121f21d-0b07-44ae-b702-01aa29ea1f97
+ - 5795323d-b235-437d-98e8-45039cd253e0
status:
code: 200
message: OK
@@ -2165,20 +2165,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2203,7 +2203,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:24:55 GMT
+ - Thu, 15 Apr 2021 06:57:26 GMT
expires:
- '-1'
pragma:
@@ -2220,7 +2220,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 2222fc97-557a-4988-9384-5d187235f9ab
+ - c549af79-209e-4437-9bb7-ed5993290af3
status:
code: 200
message: OK
@@ -2238,20 +2238,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2276,7 +2276,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:25:25 GMT
+ - Thu, 15 Apr 2021 06:57:56 GMT
expires:
- '-1'
pragma:
@@ -2293,7 +2293,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5d840706-7905-46f2-9a43-b896f40e4fd4
+ - 4dcde08d-7cc0-4b03-80ad-9632422f1c7b
status:
code: 200
message: OK
@@ -2311,20 +2311,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2349,7 +2349,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:25:57 GMT
+ - Thu, 15 Apr 2021 06:58:26 GMT
expires:
- '-1'
pragma:
@@ -2366,7 +2366,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - ea190f78-d493-412a-af8c-db5905465564
+ - fbb3329a-21dd-4651-8de6-8d3fdedca446
status:
code: 200
message: OK
@@ -2384,20 +2384,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2422,7 +2422,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:26:27 GMT
+ - Thu, 15 Apr 2021 06:58:57 GMT
expires:
- '-1'
pragma:
@@ -2439,7 +2439,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8a437c7e-9e83-4820-9b95-5e7c3ea5c8d1
+ - 9c5e17e7-2566-4bde-94b0-31b96fdf29d6
status:
code: 200
message: OK
@@ -2457,20 +2457,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2495,7 +2495,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:26:58 GMT
+ - Thu, 15 Apr 2021 06:59:27 GMT
expires:
- '-1'
pragma:
@@ -2512,7 +2512,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8381e434-e0d0-48b3-ad6d-409c19924d87
+ - 90c64234-b731-48a5-80c0-47cd8a346564
status:
code: 200
message: OK
@@ -2530,20 +2530,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2568,7 +2568,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:27:28 GMT
+ - Thu, 15 Apr 2021 06:59:57 GMT
expires:
- '-1'
pragma:
@@ -2585,7 +2585,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9f15247f-6aee-4425-a542-43018e7ef131
+ - 26f5eef8-b4c0-491c-9adc-026e915b9052
status:
code: 200
message: OK
@@ -2603,20 +2603,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2641,7 +2641,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:27:58 GMT
+ - Thu, 15 Apr 2021 07:00:28 GMT
expires:
- '-1'
pragma:
@@ -2658,7 +2658,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e1c70a0c-4e5b-43e2-86d2-0e516ee715a1
+ - 6772ad5f-744d-4be1-b354-b7a7aa05929d
status:
code: 200
message: OK
@@ -2676,20 +2676,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2714,7 +2714,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:28:28 GMT
+ - Thu, 15 Apr 2021 07:00:58 GMT
expires:
- '-1'
pragma:
@@ -2731,7 +2731,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - fd103671-256d-4827-a32b-d4c611e21eaa
+ - ea7b3c8b-19c7-4ecb-8559-216835225e0e
status:
code: 200
message: OK
@@ -2749,20 +2749,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2787,7 +2787,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:28:59 GMT
+ - Thu, 15 Apr 2021 07:01:28 GMT
expires:
- '-1'
pragma:
@@ -2804,7 +2804,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5f1b4e9c-91f8-4761-ba35-b2de04a30265
+ - b2528299-38c1-44d4-a504-37e335ca8675
status:
code: 200
message: OK
@@ -2822,20 +2822,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2860,7 +2860,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:29:30 GMT
+ - Thu, 15 Apr 2021 07:01:59 GMT
expires:
- '-1'
pragma:
@@ -2877,7 +2877,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - df6dd655-07fb-4f73-850d-6e3172041d7c
+ - 449ca9d7-9f62-4e47-9305-191c0ba97be1
status:
code: 200
message: OK
@@ -2895,20 +2895,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2933,7 +2933,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:30:00 GMT
+ - Thu, 15 Apr 2021 07:02:29 GMT
expires:
- '-1'
pragma:
@@ -2950,7 +2950,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - bcafe789-64ba-42d6-8276-82f5a2614eea
+ - 6db2fd09-605c-488c-b4b1-ce62c3e09b12
status:
code: 200
message: OK
@@ -2968,20 +2968,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3006,7 +3006,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:30:32 GMT
+ - Thu, 15 Apr 2021 07:02:59 GMT
expires:
- '-1'
pragma:
@@ -3023,7 +3023,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 631fe76d-3b59-46f2-8464-54a0a850bd6f
+ - de47caa4-6c1a-4eba-8d56-f4485dbc58eb
status:
code: 200
message: OK
@@ -3041,20 +3041,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3079,7 +3079,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:31:03 GMT
+ - Thu, 15 Apr 2021 07:03:30 GMT
expires:
- '-1'
pragma:
@@ -3096,7 +3096,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 37be65da-c9d8-49a2-b4d2-04faaa74435e
+ - b2ccab5c-7e1d-47c4-8678-4e53a7823018
status:
code: 200
message: OK
@@ -3114,20 +3114,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3152,7 +3152,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:31:34 GMT
+ - Thu, 15 Apr 2021 07:04:00 GMT
expires:
- '-1'
pragma:
@@ -3169,7 +3169,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b94ab373-027e-4ade-b7f5-aeaf56f3f500
+ - d88e7f41-d6a0-49cc-a233-856b20adbd98
status:
code: 200
message: OK
@@ -3187,20 +3187,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3225,7 +3225,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:32:05 GMT
+ - Thu, 15 Apr 2021 07:04:30 GMT
expires:
- '-1'
pragma:
@@ -3242,7 +3242,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 432b728d-e87d-479b-9ab7-be2656da7d37
+ - fad4f4e9-e26c-46ca-853d-83d4994cc99f
status:
code: 200
message: OK
@@ -3260,20 +3260,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3298,7 +3298,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:32:35 GMT
+ - Thu, 15 Apr 2021 07:05:00 GMT
expires:
- '-1'
pragma:
@@ -3315,7 +3315,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f301a63e-547a-4961-817c-eab81d9399cd
+ - 860e3410-8c31-4638-98aa-ad4a9c182f1b
status:
code: 200
message: OK
@@ -3333,20 +3333,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3371,7 +3371,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:33:06 GMT
+ - Thu, 15 Apr 2021 07:05:31 GMT
expires:
- '-1'
pragma:
@@ -3388,7 +3388,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 85e59c3c-3071-4962-b67e-3e33c132eeab
+ - 986ff262-b063-47c2-af3a-62caa2804368
status:
code: 200
message: OK
@@ -3406,20 +3406,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3444,7 +3444,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:33:36 GMT
+ - Thu, 15 Apr 2021 07:06:01 GMT
expires:
- '-1'
pragma:
@@ -3461,7 +3461,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 97aa95c7-236e-4da9-b28b-9320bfaa2381
+ - 50c8566e-a38a-4c4b-a5e2-72adec5620f2
status:
code: 200
message: OK
@@ -3479,20 +3479,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3517,7 +3517,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:34:06 GMT
+ - Thu, 15 Apr 2021 07:06:32 GMT
expires:
- '-1'
pragma:
@@ -3534,7 +3534,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a8dc9825-d4e0-475e-a02a-33f86cfa83bd
+ - d234623c-accf-4b57-a96d-e26533c4e6fd
status:
code: 200
message: OK
@@ -3552,20 +3552,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3590,7 +3590,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:34:38 GMT
+ - Thu, 15 Apr 2021 07:07:02 GMT
expires:
- '-1'
pragma:
@@ -3607,7 +3607,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 741c8b5c-ad99-44b5-9092-a49315e0e1f8
+ - 291032dc-19e8-4e34-a696-abceb2862aae
status:
code: 200
message: OK
@@ -3625,20 +3625,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3663,7 +3663,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:35:09 GMT
+ - Thu, 15 Apr 2021 07:07:32 GMT
expires:
- '-1'
pragma:
@@ -3680,7 +3680,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 01d70756-ea02-4052-ae25-546defd3193b
+ - 7d9bd5f5-9c6e-4382-b069-c16a6fb24f3b
status:
code: 200
message: OK
@@ -3698,20 +3698,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3736,7 +3736,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:35:39 GMT
+ - Thu, 15 Apr 2021 07:08:03 GMT
expires:
- '-1'
pragma:
@@ -3753,7 +3753,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 51100d77-197c-48cc-babc-894b09c32d07
+ - c0bd8801-3b63-49c0-b6fa-ac6d1e8cb695
status:
code: 200
message: OK
@@ -3771,20 +3771,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3809,7 +3809,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:36:09 GMT
+ - Thu, 15 Apr 2021 07:08:33 GMT
expires:
- '-1'
pragma:
@@ -3826,7 +3826,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - fce918ee-95f6-4597-afd5-624281f6d332
+ - c4fc2e61-1a98-488b-ba38-24136552dce2
status:
code: 200
message: OK
@@ -3844,20 +3844,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3882,7 +3882,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:36:39 GMT
+ - Thu, 15 Apr 2021 07:09:04 GMT
expires:
- '-1'
pragma:
@@ -3899,7 +3899,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8da7f540-af04-4c0c-85b1-1479bd0675c8
+ - abb1e28f-bfcb-4f02-a3d4-916ab6af4e96
status:
code: 200
message: OK
@@ -3917,20 +3917,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3955,7 +3955,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:37:10 GMT
+ - Thu, 15 Apr 2021 07:09:34 GMT
expires:
- '-1'
pragma:
@@ -3972,7 +3972,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 69cf6684-05d4-4b78-b2cf-2f448df26df6
+ - e2dadd91-a1aa-4c24-974f-37422b46943e
status:
code: 200
message: OK
@@ -3990,20 +3990,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4028,7 +4028,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:37:41 GMT
+ - Thu, 15 Apr 2021 07:10:04 GMT
expires:
- '-1'
pragma:
@@ -4045,7 +4045,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9cf85d45-b27f-4939-87ac-8a412cc1225f
+ - 2fac57a5-26cd-4770-8c6a-1f66772564ab
status:
code: 200
message: OK
@@ -4063,20 +4063,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4101,7 +4101,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:38:12 GMT
+ - Thu, 15 Apr 2021 07:10:35 GMT
expires:
- '-1'
pragma:
@@ -4118,7 +4118,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8590ad38-74d0-4ce5-bdc0-702a8fbe1a9e
+ - ce9d3aa5-b41e-4dcf-b9d4-3c4519a1317d
status:
code: 200
message: OK
@@ -4136,20 +4136,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4174,7 +4174,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:38:42 GMT
+ - Thu, 15 Apr 2021 07:11:05 GMT
expires:
- '-1'
pragma:
@@ -4191,7 +4191,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8b011749-3579-43e4-838d-d32584a82c40
+ - 0c1e54c0-2f04-467c-9925-84b3ff617a88
status:
code: 200
message: OK
@@ -4209,20 +4209,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4247,7 +4247,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:39:13 GMT
+ - Thu, 15 Apr 2021 07:11:35 GMT
expires:
- '-1'
pragma:
@@ -4264,7 +4264,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c2b97682-e54c-4a52-bae8-533824ba720c
+ - a0054afc-5938-45b3-b4a7-7339a64a3f08
status:
code: 200
message: OK
@@ -4282,20 +4282,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4320,7 +4320,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:39:43 GMT
+ - Thu, 15 Apr 2021 07:12:06 GMT
expires:
- '-1'
pragma:
@@ -4337,7 +4337,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6a51c916-6af8-4728-a302-ce496cca19bd
+ - 5de469b3-b7ed-4f40-9ab2-b24e2647e500
status:
code: 200
message: OK
@@ -4355,20 +4355,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4393,7 +4393,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:40:14 GMT
+ - Thu, 15 Apr 2021 07:12:36 GMT
expires:
- '-1'
pragma:
@@ -4410,7 +4410,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - bdca3e6f-225c-43d3-a059-d625a23d65cb
+ - 987c2967-8d3a-4f4b-9818-c93a2b4fee09
status:
code: 200
message: OK
@@ -4428,20 +4428,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4466,7 +4466,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:40:44 GMT
+ - Thu, 15 Apr 2021 07:13:06 GMT
expires:
- '-1'
pragma:
@@ -4483,7 +4483,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 4367e0fe-20f1-4997-bb3f-582a58739fe3
+ - 561b82ca-5bff-4dcd-8beb-099957d133f8
status:
code: 200
message: OK
@@ -4501,20 +4501,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4539,7 +4539,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:41:15 GMT
+ - Thu, 15 Apr 2021 07:13:37 GMT
expires:
- '-1'
pragma:
@@ -4556,7 +4556,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 846698b3-b81e-47cd-ba76-e3c8b47bac61
+ - 29c22080-4c22-402f-8969-efe0fa5542bb
status:
code: 200
message: OK
@@ -4574,20 +4574,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4612,7 +4612,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:41:45 GMT
+ - Thu, 15 Apr 2021 07:14:07 GMT
expires:
- '-1'
pragma:
@@ -4629,7 +4629,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - ef89bc35-1c6c-4992-abb1-b4d92e5c929f
+ - bbcf3f8e-17dc-4ae3-aff7-c89c43a2c0ac
status:
code: 200
message: OK
@@ -4647,20 +4647,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4685,7 +4685,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:42:16 GMT
+ - Thu, 15 Apr 2021 07:14:37 GMT
expires:
- '-1'
pragma:
@@ -4702,7 +4702,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 72050840-7121-439a-8d5c-3ec6b6af8481
+ - ab41cc63-722b-4118-b6f6-ad88a63742ec
status:
code: 200
message: OK
@@ -4720,20 +4720,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4758,7 +4758,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:42:46 GMT
+ - Thu, 15 Apr 2021 07:15:09 GMT
expires:
- '-1'
pragma:
@@ -4775,7 +4775,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 711be757-b630-413e-af0b-fdb557fce564
+ - ebee41b7-9213-43a5-a90b-d5e16ae355fb
status:
code: 200
message: OK
@@ -4793,20 +4793,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4831,7 +4831,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:43:17 GMT
+ - Thu, 15 Apr 2021 07:15:39 GMT
expires:
- '-1'
pragma:
@@ -4848,7 +4848,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6d716f30-fbe4-4125-bc86-de8015e550a0
+ - 01d935b9-444f-479a-989b-2bb79bd9cfa7
status:
code: 200
message: OK
@@ -4866,20 +4866,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4904,7 +4904,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:43:47 GMT
+ - Thu, 15 Apr 2021 07:16:09 GMT
expires:
- '-1'
pragma:
@@ -4921,7 +4921,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c02b37da-375a-4c4a-8e7f-780ce90d95ed
+ - 9f8cefab-2296-42b7-9485-bf4976ff6ce1
status:
code: 200
message: OK
@@ -4939,20 +4939,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4977,7 +4977,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:44:17 GMT
+ - Thu, 15 Apr 2021 07:16:39 GMT
expires:
- '-1'
pragma:
@@ -4994,7 +4994,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b0d481c4-576b-4f99-84e6-64fc72173db5
+ - 761997be-527c-4a0a-92dc-9187c94ea1f9
status:
code: 200
message: OK
@@ -5012,20 +5012,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5050,7 +5050,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:44:48 GMT
+ - Thu, 15 Apr 2021 07:17:10 GMT
expires:
- '-1'
pragma:
@@ -5067,7 +5067,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 587d2801-dc63-4818-b2c9-0749473d7255
+ - 9f8fb090-cf73-4260-b1a6-58734e719e51
status:
code: 200
message: OK
@@ -5085,20 +5085,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5123,7 +5123,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:45:18 GMT
+ - Thu, 15 Apr 2021 07:17:40 GMT
expires:
- '-1'
pragma:
@@ -5140,7 +5140,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9ab12262-4927-48ba-9288-5898a04e4605
+ - 4c28c939-02c2-4152-b301-ff563451b8b1
status:
code: 200
message: OK
@@ -5158,20 +5158,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5196,7 +5196,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:45:49 GMT
+ - Thu, 15 Apr 2021 07:18:10 GMT
expires:
- '-1'
pragma:
@@ -5213,7 +5213,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 667d660a-3b09-4467-992a-929cad508afa
+ - 4832dcf0-80f2-40ad-aaa1-17305d330c6b
status:
code: 200
message: OK
@@ -5231,20 +5231,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5269,7 +5269,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:46:20 GMT
+ - Thu, 15 Apr 2021 07:18:40 GMT
expires:
- '-1'
pragma:
@@ -5286,7 +5286,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 2b539c01-370b-4466-84fd-ea9c069c6905
+ - 68d44c65-1fa2-4fa9-b017-e277ea5b2040
status:
code: 200
message: OK
@@ -5304,20 +5304,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5342,7 +5342,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:46:51 GMT
+ - Thu, 15 Apr 2021 07:19:11 GMT
expires:
- '-1'
pragma:
@@ -5359,7 +5359,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9c572d3b-baca-4025-84fb-45a0f4849644
+ - 48eb13fa-34eb-4bb8-8c80-ac29f9a9fb15
status:
code: 200
message: OK
@@ -5377,20 +5377,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5415,7 +5415,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:47:21 GMT
+ - Thu, 15 Apr 2021 07:19:41 GMT
expires:
- '-1'
pragma:
@@ -5432,7 +5432,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a3e810e1-7476-441c-9ea5-ccb6407711ce
+ - 423fcb4e-9306-417e-83cc-ad1310afea28
status:
code: 200
message: OK
@@ -5450,20 +5450,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5488,7 +5488,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:47:52 GMT
+ - Thu, 15 Apr 2021 07:20:12 GMT
expires:
- '-1'
pragma:
@@ -5505,7 +5505,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9b3ea2eb-dd8c-447a-a58a-81392cda697c
+ - f53084c6-71bd-4b38-873d-8f50b9b00824
status:
code: 200
message: OK
@@ -5523,20 +5523,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5561,7 +5561,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:48:22 GMT
+ - Thu, 15 Apr 2021 07:20:42 GMT
expires:
- '-1'
pragma:
@@ -5578,7 +5578,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 25317d2d-1b55-4c32-b958-b4430d678f38
+ - 21ca6306-2d83-40b9-a128-8638306102fd
status:
code: 200
message: OK
@@ -5596,20 +5596,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5634,7 +5634,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:48:53 GMT
+ - Thu, 15 Apr 2021 07:21:12 GMT
expires:
- '-1'
pragma:
@@ -5651,7 +5651,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 32d465b5-47a2-481b-8390-2145ec0e20a7
+ - 410d1b59-b83a-4030-9972-2455b758d8ba
status:
code: 200
message: OK
@@ -5669,20 +5669,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5707,7 +5707,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:49:23 GMT
+ - Thu, 15 Apr 2021 07:21:43 GMT
expires:
- '-1'
pragma:
@@ -5724,7 +5724,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 692df43e-8eb1-48e2-b93f-06dccc5ca784
+ - aa7afa41-b0ff-4c8c-b7fb-a833b7a2af46
status:
code: 200
message: OK
@@ -5742,20 +5742,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5780,7 +5780,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:49:54 GMT
+ - Thu, 15 Apr 2021 07:22:13 GMT
expires:
- '-1'
pragma:
@@ -5797,7 +5797,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7b522ee3-5643-44bb-9c0d-9f17af0aae02
+ - 60b8e50a-f046-47bf-9896-97b8e80ca6fc
status:
code: 200
message: OK
@@ -5815,20 +5815,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5853,7 +5853,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:50:24 GMT
+ - Thu, 15 Apr 2021 07:22:43 GMT
expires:
- '-1'
pragma:
@@ -5870,7 +5870,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f2a29dc6-9700-4bb2-984d-00655a54e740
+ - ef38beeb-584c-4bd9-b080-dbfda26d373f
status:
code: 200
message: OK
@@ -5888,20 +5888,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5926,7 +5926,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:50:55 GMT
+ - Thu, 15 Apr 2021 07:23:14 GMT
expires:
- '-1'
pragma:
@@ -5943,7 +5943,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 577b16ff-e308-45bd-906f-9f43a1d16a88
+ - a4cf6ebc-7f56-440e-8581-dceee27a5764
status:
code: 200
message: OK
@@ -5961,20 +5961,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5999,7 +5999,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:51:25 GMT
+ - Thu, 15 Apr 2021 07:23:44 GMT
expires:
- '-1'
pragma:
@@ -6016,7 +6016,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 94bfa14e-77f9-459a-9b0e-6d3bbd79c5c6
+ - e59c689a-b55e-49ec-a342-ff6438c9927c
status:
code: 200
message: OK
@@ -6034,20 +6034,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -6072,7 +6072,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:51:55 GMT
+ - Thu, 15 Apr 2021 07:24:14 GMT
expires:
- '-1'
pragma:
@@ -6089,7 +6089,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e6e6b82b-d4c6-4861-b72f-756f41f5cd2e
+ - 119ac0ab-6e01-4ade-9948-e4abef590e76
status:
code: 200
message: OK
@@ -6107,20 +6107,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -6145,7 +6145,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:52:25 GMT
+ - Thu, 15 Apr 2021 07:24:45 GMT
expires:
- '-1'
pragma:
@@ -6162,7 +6162,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 2f839097-59a5-43a4-a786-7df24fcd176e
+ - 23be4966-3ba0-44b5-aa49-7f7a0512181b
status:
code: 200
message: OK
@@ -6180,20 +6180,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -6218,7 +6218,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:52:55 GMT
+ - Thu, 15 Apr 2021 07:25:15 GMT
expires:
- '-1'
pragma:
@@ -6235,7 +6235,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 0ff2e0ae-5252-43d8-aa07-813aa75f39f6
+ - 2392d72a-dadf-43fa-a69f-1818f0103238
status:
code: 200
message: OK
@@ -6253,20 +6253,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -6291,7 +6291,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:53:27 GMT
+ - Thu, 15 Apr 2021 07:25:45 GMT
expires:
- '-1'
pragma:
@@ -6308,7 +6308,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 69aff293-ea67-4859-a5dd-a5322c9a162e
+ - 97b22e47-def4-4d02-99f2-2fcaf8e43825
status:
code: 200
message: OK
@@ -6326,20 +6326,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -6364,7 +6364,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:53:57 GMT
+ - Thu, 15 Apr 2021 07:26:16 GMT
expires:
- '-1'
pragma:
@@ -6381,7 +6381,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1a0611f4-21b3-473c-89b6-20d437e40c0f
+ - f4ee9de4-258e-4eb8-abe5-0cb2662f41bb
status:
code: 200
message: OK
@@ -6399,20 +6399,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -6437,7 +6437,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:54:27 GMT
+ - Thu, 15 Apr 2021 07:26:46 GMT
expires:
- '-1'
pragma:
@@ -6454,7 +6454,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 84d365dc-edfa-4157-92dc-5f2416dea299
+ - 458af130-a2c9-4e54-b4bb-3dd5568ac1fb
status:
code: 200
message: OK
@@ -6472,20 +6472,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -6510,7 +6510,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:54:58 GMT
+ - Thu, 15 Apr 2021 07:27:16 GMT
expires:
- '-1'
pragma:
@@ -6527,7 +6527,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 87ceaa52-a67b-41c3-8081-bf11cfba2097
+ - 196689df-cf08-43e8-b60b-b0b52a423e74
status:
code: 200
message: OK
@@ -6545,20 +6545,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -6583,7 +6583,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:55:28 GMT
+ - Thu, 15 Apr 2021 07:27:47 GMT
expires:
- '-1'
pragma:
@@ -6600,7 +6600,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8a07dc2b-5a17-4401-a5a1-0943cdf99e19
+ - 2f0ae230-76d5-4ade-9868-3597413693c0
status:
code: 200
message: OK
@@ -6618,20 +6618,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -6656,7 +6656,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:55:59 GMT
+ - Thu, 15 Apr 2021 07:28:17 GMT
expires:
- '-1'
pragma:
@@ -6673,7 +6673,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7f9e0dc9-2e09-4625-be2a-e8a04a0418e7
+ - 1b1a783d-0173-4682-a3d6-59677d96eb19
status:
code: 200
message: OK
@@ -6691,20 +6691,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -6729,7 +6729,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:56:29 GMT
+ - Thu, 15 Apr 2021 07:28:48 GMT
expires:
- '-1'
pragma:
@@ -6746,7 +6746,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 42ba2965-a2f8-4a83-a67f-dbc81c92a814
+ - 5e023f23-084d-4770-8ee4-745ef468739f
status:
code: 200
message: OK
@@ -6764,20 +6764,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -6802,7 +6802,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:57:00 GMT
+ - Thu, 15 Apr 2021 07:29:18 GMT
expires:
- '-1'
pragma:
@@ -6819,7 +6819,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 512f0dc9-990d-49c4-85f5-7248bca3021d
+ - b1605223-d23a-44cb-8b32-4aa6e6bca042
status:
code: 200
message: OK
@@ -6837,20 +6837,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -6875,7 +6875,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:57:31 GMT
+ - Thu, 15 Apr 2021 07:29:48 GMT
expires:
- '-1'
pragma:
@@ -6892,7 +6892,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 93e243b6-d4df-4fae-b1ec-ae66b1d9b061
+ - 03342d0e-50c3-4deb-8ace-e0690c074084
status:
code: 200
message: OK
@@ -6910,20 +6910,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bff3bdf-294d-4a36-85f4-5170dc4483f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -6948,7 +6948,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:58:02 GMT
+ - Thu, 15 Apr 2021 07:30:19 GMT
expires:
- '-1'
pragma:
@@ -6965,7 +6965,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e3faa30f-7fe7-48ba-88f3-c68049bae9e8
+ - e071938e-8706-4ede-adc8-e3272a80fc37
status:
code: 200
message: OK
@@ -6983,22 +6983,22 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"2802563a-47be-4254-9225-9939ff813127\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"2802563a-47be-4254-9225-9939ff813127\\\"\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
@@ -7007,23 +7007,21 @@ interactions:
\"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
\ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
- 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\":
- 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
- \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"40.112.208.116\"\r\n ]\r\n }\r\n ]\r\n
- \ },\r\n \"customRoutes\": {\r\n \"addressPrefixes\": [\r\n \"101.168.0.6/32\"\r\n
- \ ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"customRoutes\": {\r\n \"addressPrefixes\":
+ [\r\n \"101.168.0.6/32\"\r\n ]\r\n },\r\n \"vpnGatewayGeneration\":
+ \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2799'
+ - '2635'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:58:32 GMT
+ - Thu, 15 Apr 2021 07:30:49 GMT
expires:
- '-1'
pragma:
@@ -7040,7 +7038,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1aac296a-9813-45d9-9576-d46f9c814d91
+ - ed7592b9-7b60-4141-b830-3f307739f58e
status:
code: 200
message: OK
@@ -7058,44 +7056,45 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
- string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n \"type\":
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"c78f3890-3d6e-49f9-a268-e7d4fadfb686\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
\ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
\"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
\ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ []\r\n }\r\n ]\r\n },\r\n \"customRoutes\": {\r\n \"addressPrefixes\":
+ [\r\n \"101.168.0.6/32\"\r\n ]\r\n },\r\n \"vpnGatewayGeneration\":
+ \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2541'
+ - '2635'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:58:33 GMT
+ - Thu, 15 Apr 2021 07:31:19 GMT
expires:
- '-1'
pragma:
@@ -7112,7 +7111,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 759f2589-3796-48a4-accf-e0a215dd471d
+ - a0dc93c2-38aa-4934-9991-18d201b38d04
status:
code: 200
message: OK
@@ -7130,44 +7129,45 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
- string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n \"type\":
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"c78f3890-3d6e-49f9-a268-e7d4fadfb686\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"2c855017-93a5-4120-9233-458b9807d715\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
\ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
\"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
\ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ []\r\n }\r\n ]\r\n },\r\n \"customRoutes\": {\r\n \"addressPrefixes\":
+ [\r\n \"101.168.0.6/32\"\r\n ]\r\n },\r\n \"vpnGatewayGeneration\":
+ \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2541'
+ - '2635'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:59:03 GMT
+ - Thu, 15 Apr 2021 07:31:50 GMT
expires:
- '-1'
pragma:
@@ -7184,7 +7184,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 4fb46384-b8fd-4f6e-bcd8-17d883f3bda3
+ - 3639dbbc-6b04-47dd-93c8-63a7598562f3
status:
code: 200
message: OK
@@ -7202,44 +7202,47 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
- string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n \"type\":
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"e1efac9f-3088-4c01-b6bb-a5b63bd22ae2\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"c78f3890-3d6e-49f9-a268-e7d4fadfb686\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"e1efac9f-3088-4c01-b6bb-a5b63bd22ae2\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
\ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
\"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
\ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
- 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"168.61.17.254\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"customRoutes\": {\r\n \"addressPrefixes\": [\r\n \"101.168.0.6/32\"\r\n
+ \ ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2541'
+ - '2798'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 06:59:34 GMT
+ - Thu, 15 Apr 2021 07:32:20 GMT
expires:
- '-1'
pragma:
@@ -7256,7 +7259,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 4253a77a-5e0a-4e9e-a644-5e6a960d4e02
+ - 210566bd-bd8d-494c-a1a8-0a4ef22f36f9
status:
code: 200
message: OK
@@ -7274,22 +7277,22 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"066543fb-4a6c-40ce-8c62-0a4497e7ec8b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"c78f3890-3d6e-49f9-a268-e7d4fadfb686\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"c23d09b4-281b-4afd-a436-7098ff4fcbbd\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n
+ \ \"etag\": \"W/\\\"066543fb-4a6c-40ce-8c62-0a4497e7ec8b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
@@ -7298,20 +7301,22 @@ interactions:
\"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
\ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
- 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ 65515,\r\n \"bgpPeeringAddress\": \"10.1.0.254\",\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.1.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"104.42.18.137\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2541'
+ - '2704'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:00:04 GMT
+ - Thu, 15 Apr 2021 07:32:21 GMT
expires:
- '-1'
pragma:
@@ -7328,7 +7333,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 68a8ca25-345e-4d81-b2eb-139642d8c46d
+ - 25c55ec8-b231-4a46-a6ba-0acc5d8d5423
status:
code: 200
message: OK
@@ -7346,32 +7351,33 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2020-11-01
response:
body:
- string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n \"type\":
+ string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"c78f3890-3d6e-49f9-a268-e7d4fadfb686\",\r\n \"packetCaptureDiagnosticState\":
+ \"79eea2b6-e1c8-4fa0-a3d8-47b5eb1c2d10\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
\ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
- \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
- false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
- 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
+ \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
+ \ \"enableBgp\": true,\r\n \"activeActive\": false,\r\n \"bgpSettings\":
+ {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\": \"10.2.250.250\",\r\n
+ \ \"peerWeight\": 50,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
[]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
\ }\r\n}"
@@ -7379,11 +7385,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2541'
+ - '2595'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:00:35 GMT
+ - Thu, 15 Apr 2021 07:32:22 GMT
expires:
- '-1'
pragma:
@@ -7400,7 +7406,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a6b639d9-0488-4053-8c4b-b24da4922f76
+ - 762f252b-92f1-46ba-b0b4-58f470e80210
status:
code: 200
message: OK
@@ -7418,32 +7424,33 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2020-11-01
response:
body:
- string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n \"type\":
+ string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"c78f3890-3d6e-49f9-a268-e7d4fadfb686\",\r\n \"packetCaptureDiagnosticState\":
+ \"79eea2b6-e1c8-4fa0-a3d8-47b5eb1c2d10\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
\ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
- \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
- false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
- 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
+ \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
+ \ \"enableBgp\": true,\r\n \"activeActive\": false,\r\n \"bgpSettings\":
+ {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\": \"10.2.250.250\",\r\n
+ \ \"peerWeight\": 50,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
[]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
\ }\r\n}"
@@ -7451,11 +7458,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2541'
+ - '2595'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:01:05 GMT
+ - Thu, 15 Apr 2021 07:32:53 GMT
expires:
- '-1'
pragma:
@@ -7472,7 +7479,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 49ecf736-ed54-4609-a01a-767b0df0501c
+ - d210464a-a5fc-461b-b784-5efd6e5f7156
status:
code: 200
message: OK
@@ -7490,32 +7497,33 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2020-11-01
response:
body:
- string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n \"type\":
+ string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"c78f3890-3d6e-49f9-a268-e7d4fadfb686\",\r\n \"packetCaptureDiagnosticState\":
+ \"79eea2b6-e1c8-4fa0-a3d8-47b5eb1c2d10\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
\ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
- \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
- false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
- 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
+ \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
+ \ \"enableBgp\": true,\r\n \"activeActive\": false,\r\n \"bgpSettings\":
+ {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\": \"10.2.250.250\",\r\n
+ \ \"peerWeight\": 50,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
[]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
\ }\r\n}"
@@ -7523,11 +7531,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2541'
+ - '2595'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:01:35 GMT
+ - Thu, 15 Apr 2021 07:33:23 GMT
expires:
- '-1'
pragma:
@@ -7544,7 +7552,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 05856f8e-ffa1-4fc2-b598-a5c593e0c958
+ - 29eecac9-66c8-4792-8848-da31eaa38d34
status:
code: 200
message: OK
@@ -7562,32 +7570,33 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2020-11-01
response:
body:
- string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n \"type\":
+ string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"c78f3890-3d6e-49f9-a268-e7d4fadfb686\",\r\n \"packetCaptureDiagnosticState\":
+ \"79eea2b6-e1c8-4fa0-a3d8-47b5eb1c2d10\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"569b2563-7903-45d7-a9c8-4e52b5bfe9e3\\\"\",\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
\ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
- \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
- false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
- 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
+ \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
+ \ \"enableBgp\": true,\r\n \"activeActive\": false,\r\n \"bgpSettings\":
+ {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\": \"10.2.250.250\",\r\n
+ \ \"peerWeight\": 50,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
[]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
\ }\r\n}"
@@ -7595,11 +7604,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2541'
+ - '2595'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:02:06 GMT
+ - Thu, 15 Apr 2021 07:33:53 GMT
expires:
- '-1'
pragma:
@@ -7616,7 +7625,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 73a6f323-4090-4c74-9f6e-576880e14f3f
+ - cfbae178-8fb0-49e2-adff-403dfb56a59d
status:
code: 200
message: OK
@@ -7634,46 +7643,45 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2020-11-01
response:
body:
- string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
- \ \"etag\": \"W/\\\"174a515b-6150-481d-a7d6-58cd211dd8f2\\\"\",\r\n \"type\":
+ string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"c78f3890-3d6e-49f9-a268-e7d4fadfb686\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"79eea2b6-e1c8-4fa0-a3d8-47b5eb1c2d10\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"174a515b-6150-481d-a7d6-58cd211dd8f2\\\"\",\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/GatewaySubnet\"\r\n
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
\ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
- \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
- false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
- 65515,\r\n \"bgpPeeringAddress\": \"10.1.0.254\",\r\n \"peerWeight\":
- 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [\r\n \"10.1.0.254\"\r\n ],\r\n
- \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.111.18\"\r\n ]\r\n }\r\n ]\r\n
- \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
+ \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
+ \ \"enableBgp\": true,\r\n \"activeActive\": false,\r\n \"bgpSettings\":
+ {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\": \"10.2.250.250\",\r\n
+ \ \"peerWeight\": 50,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2704'
+ - '2595'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:02:37 GMT
+ - Thu, 15 Apr 2021 07:34:23 GMT
expires:
- '-1'
pragma:
@@ -7690,7 +7698,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c149ebb4-86a5-46cb-bee7-7faaff2cce73
+ - ea9c74ff-8429-4157-bcad-1977362a8f91
status:
code: 200
message: OK
@@ -7708,22 +7716,22 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\",\r\n
- \ \"etag\": \"W/\\\"2af15ca3-390a-42ba-8614-1bc5c3f496e3\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"7b77e830-48cb-4038-a63f-c98faa7e8e38\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"79eea2b6-e1c8-4fa0-a3d8-47b5eb1c2d10\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"2af15ca3-390a-42ba-8614-1bc5c3f496e3\\\"\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\r\n
@@ -7735,19 +7743,18 @@ interactions:
{\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\": \"10.2.250.250\",\r\n
\ \"peerWeight\": 50,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [\r\n \"10.2.250.250\"\r\n
- \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"40.112.208.119\"\r\n ]\r\n }\r\n ]\r\n
- \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2715'
+ - '2595'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:02:38 GMT
+ - Thu, 15 Apr 2021 07:34:54 GMT
expires:
- '-1'
pragma:
@@ -7764,7 +7771,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 57f4562e-8049-4a94-86d1-56a31ae326de
+ - 69bc2505-982c-47b4-8545-0704800e4172
status:
code: 200
message: OK
@@ -7776,53 +7783,416 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet-gateway show
+ - network vnet-gateway wait
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2020-11-01
response:
body:
- string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"2802563a-47be-4254-9225-9939ff813127\\\"\",\r\n \"type\":
+ string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"79eea2b6-e1c8-4fa0-a3d8-47b5eb1c2d10\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"2802563a-47be-4254-9225-9939ff813127\\\"\",\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
\ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
- \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
- false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
- 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\":
- 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
- \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"40.112.208.116\"\r\n ]\r\n }\r\n ]\r\n
- \ },\r\n \"customRoutes\": {\r\n \"addressPrefixes\": [\r\n \"101.168.0.6/32\"\r\n
- \ ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2799'
- content-type:
+ \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
+ \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
+ \ \"enableBgp\": true,\r\n \"activeActive\": false,\r\n \"bgpSettings\":
+ {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\": \"10.2.250.250\",\r\n
+ \ \"peerWeight\": 50,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2595'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 07:35:24 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:
+ - d2eb0fee-b43e-4df3-b2eb-9c853fc92560
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"79eea2b6-e1c8-4fa0-a3d8-47b5eb1c2d10\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
+ \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
+ \ \"enableBgp\": true,\r\n \"activeActive\": false,\r\n \"bgpSettings\":
+ {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\": \"10.2.250.250\",\r\n
+ \ \"peerWeight\": 50,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2595'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 07:35:54 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:
+ - 49d31e5a-1963-421d-9522-c10e7c8446ff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"79eea2b6-e1c8-4fa0-a3d8-47b5eb1c2d10\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
+ \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
+ \ \"enableBgp\": true,\r\n \"activeActive\": false,\r\n \"bgpSettings\":
+ {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\": \"10.2.250.250\",\r\n
+ \ \"peerWeight\": 50,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2595'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 07:36:25 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:
+ - cd3e9b9b-e737-4bcc-89c2-74656d639b1d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"79eea2b6-e1c8-4fa0-a3d8-47b5eb1c2d10\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
+ \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
+ \ \"enableBgp\": true,\r\n \"activeActive\": false,\r\n \"bgpSettings\":
+ {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\": \"10.2.250.250\",\r\n
+ \ \"peerWeight\": 50,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2595'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 07:36:55 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:
+ - d984c3bb-8367-484d-a9ad-ca8a25312649
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"79eea2b6-e1c8-4fa0-a3d8-47b5eb1c2d10\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
+ \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
+ \ \"enableBgp\": true,\r\n \"activeActive\": false,\r\n \"bgpSettings\":
+ {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\": \"10.2.250.250\",\r\n
+ \ \"peerWeight\": 50,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2595'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 07:37:25 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:
+ - 31fdb390-8460-4e79-9b46-99036061cbac
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway wait
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --created
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"79eea2b6-e1c8-4fa0-a3d8-47b5eb1c2d10\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"a4c29568-1be0-4353-ba3e-ee004afe886b\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
+ \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
+ \ \"enableBgp\": true,\r\n \"activeActive\": false,\r\n \"bgpSettings\":
+ {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\": \"10.2.250.250\",\r\n
+ \ \"peerWeight\": 50,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2595'
+ content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:02:38 GMT
+ - Thu, 15 Apr 2021 07:37:56 GMT
expires:
- '-1'
pragma:
@@ -7839,7 +8209,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - dd8ba00c-2b64-4e4c-a1ad-4bf10c0d82b8
+ - 1863d7e5-f9fa-4e3a-ac82-198c4b2dce43
status:
code: 200
message: OK
@@ -7851,53 +8221,52 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet-gateway update
+ - network vnet-gateway wait
Connection:
- keep-alive
ParameterSetName:
- - -g -n --sku --custom-routes
+ - -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2020-11-01
response:
body:
- string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"2802563a-47be-4254-9225-9939ff813127\\\"\",\r\n \"type\":
+ string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\",\r\n
+ \ \"etag\": \"W/\\\"5fb50174-a742-44a2-96b0-855739b8362b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"79eea2b6-e1c8-4fa0-a3d8-47b5eb1c2d10\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"2802563a-47be-4254-9225-9939ff813127\\\"\",\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"5fb50174-a742-44a2-96b0-855739b8362b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet3/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
\ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
- \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
- false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
- 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\":
- 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
- \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"40.112.208.116\"\r\n ]\r\n }\r\n ]\r\n
- \ },\r\n \"customRoutes\": {\r\n \"addressPrefixes\": [\r\n \"101.168.0.6/32\"\r\n
- \ ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
+ \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
+ \ \"enableBgp\": true,\r\n \"activeActive\": false,\r\n \"bgpSettings\":
+ {\r\n \"asn\": 12345,\r\n \"bgpPeeringAddress\": \"10.2.250.250\",\r\n
+ \ \"peerWeight\": 50,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.2.250.250\"\r\n
+ \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"104.42.7.34\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2799'
+ - '2712'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:02:40 GMT
+ - Thu, 15 Apr 2021 07:38:26 GMT
expires:
- '-1'
pragma:
@@ -7914,87 +8283,65 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7e54ea11-2f1b-496e-85ca-ab1f7fc92a62
+ - 8d4f2efc-95f2-4ff6-8c28-cebe7075b5fb
status:
code: 200
message: OK
- request:
- body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1",
- "location": "westus", "properties": {"ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0",
- "name": "vnetGatewayConfig0", "properties": {"privateIPAllocationMethod": "Dynamic",
- "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet"},
- "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1"}}}],
- "gatewayType": "Vpn", "vpnType": "RouteBased", "vpnGatewayGeneration": "Generation1",
- "enableBgp": false, "enablePrivateIpAddress": false, "activeActive": false,
- "sku": {"name": "Standard", "tier": "Standard"}, "bgpSettings": {"asn": 65515,
- "bgpPeeringAddress": "10.0.0.254", "peerWeight": 0, "bgpPeeringAddresses": [{"ipconfigurationId":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0",
- "customBgpIpAddresses": []}]}, "customRoutes": {"addressPrefixes": ["101.168.0.6/32",
- "102.168.0.6/32"]}}}'
+ body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet-gateway update
+ - network vnet-gateway show
Connection:
- keep-alive
- Content-Length:
- - '1759'
- Content-Type:
- - application/json
ParameterSetName:
- - -g -n --sku --custom-routes
+ - -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
- method: PUT
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"044c5833-d280-48dc-9fe8-4ecc76a650a0\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"e1efac9f-3088-4c01-b6bb-a5b63bd22ae2\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"044c5833-d280-48dc-9fe8-4ecc76a650a0\\\"\",\r\n
+ \ \"etag\": \"W/\\\"e1efac9f-3088-4c01-b6bb-a5b63bd22ae2\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
\ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
- \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
- \ \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
- {\r\n \"vpnClientProtocols\": [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n
- \ ],\r\n \"vpnAuthenticationTypes\": [],\r\n \"vpnClientRootCertificates\":
- [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\":
- [],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\":
- {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n
- \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
+ 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"40.112.208.116\"\r\n ]\r\n }\r\n ]\r\n
- \ },\r\n \"customRoutes\": {\r\n \"addressPrefixes\": [\r\n \"101.168.0.6/32\",\r\n
- \ \"102.168.0.6/32\"\r\n ]\r\n },\r\n \"vpnGatewayGeneration\":
- \"Generation1\"\r\n }\r\n}"
+ [\r\n \"168.61.17.254\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"customRoutes\": {\r\n \"addressPrefixes\": [\r\n \"101.168.0.6/32\"\r\n
+ \ ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
cache-control:
- no-cache
content-length:
- - '3133'
+ - '2798'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:02:43 GMT
+ - Thu, 15 Apr 2021 07:38:27 GMT
expires:
- '-1'
pragma:
@@ -8011,9 +8358,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5d26c320-fefb-481e-80be-26773317c67d
- x-ms-ratelimit-remaining-subscription-writes:
- - '1177'
+ - e30b3a19-5d54-45b1-b2bb-4871e03e9ef2
status:
code: 200
message: OK
@@ -8021,7 +8366,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -8031,21 +8376,47 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
- string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"e1efac9f-3088-4c01-b6bb-a5b63bd22ae2\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"e1efac9f-3088-4c01-b6bb-a5b63bd22ae2\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"bgpSettings\": {\r\n \"asn\":
+ 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\":
+ 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"168.61.17.254\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"customRoutes\": {\r\n \"addressPrefixes\": [\r\n \"101.168.0.6/32\"\r\n
+ \ ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '30'
+ - '2798'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:02:53 GMT
+ - Thu, 15 Apr 2021 07:38:28 GMT
expires:
- '-1'
pragma:
@@ -8062,39 +8433,87 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6bed452a-197c-405a-8022-e006c5777761
+ - cc59967c-7256-4e5a-962e-5a8e05c64712
status:
code: 200
message: OK
- request:
- body: null
+ body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1",
+ "location": "westus", "properties": {"ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0",
+ "name": "vnetGatewayConfig0", "properties": {"privateIPAllocationMethod": "Dynamic",
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet"},
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1"}}}],
+ "gatewayType": "Vpn", "vpnType": "RouteBased", "vpnGatewayGeneration": "Generation1",
+ "enableBgp": false, "enablePrivateIpAddress": false, "activeActive": false,
+ "sku": {"name": "Standard", "tier": "Standard"}, "bgpSettings": {"asn": 65515,
+ "bgpPeeringAddress": "10.0.0.254", "peerWeight": 0, "bgpPeeringAddresses": [{"ipconfigurationId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0",
+ "customBgpIpAddresses": []}]}, "customRoutes": {"addressPrefixes": ["101.168.0.6/32",
+ "102.168.0.6/32"]}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- network vnet-gateway update
Connection:
- keep-alive
+ Content-Length:
+ - '1759'
+ Content-Type:
+ - application/json
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
- string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
+ \ \"etag\": \"W/\\\"9afdf2b7-dcc2-4027-b34a-301c28a297ba\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"9afdf2b7-dcc2-4027-b34a-301c28a297ba\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vpn_gateway000001/providers/Microsoft.Network/publicIPAddresses/pubip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworks/myvnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n
+ \ },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
+ \ \"enableBgp\": false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientProtocols\": [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n
+ \ ],\r\n \"vpnAuthenticationTypes\": [],\r\n \"vpnClientRootCertificates\":
+ [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\":
+ [],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\":
+ {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n
+ \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"168.61.17.254\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"customRoutes\": {\r\n \"addressPrefixes\": [\r\n \"101.168.0.6/32\",\r\n
+ \ \"102.168.0.6/32\"\r\n ]\r\n },\r\n \"vpnGatewayGeneration\":
+ \"Generation1\"\r\n }\r\n}"
headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
cache-control:
- no-cache
content-length:
- - '30'
+ - '3132'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:03:14 GMT
+ - Thu, 15 Apr 2021 07:38:31 GMT
expires:
- '-1'
pragma:
@@ -8111,7 +8530,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 686300fa-a501-4adf-8c6c-82eba8b30ba4
+ - 15b9a635-11be-40e0-818a-aaed70645c2d
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
status:
code: 200
message: OK
@@ -8129,9 +8550,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8143,7 +8564,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:03:54 GMT
+ - Thu, 15 Apr 2021 07:38:42 GMT
expires:
- '-1'
pragma:
@@ -8160,7 +8581,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c9af04b2-886e-462d-befc-2623f33a8a66
+ - fbb62c36-05cd-4e73-89e2-7d3cd9d4f968
status:
code: 200
message: OK
@@ -8178,9 +8599,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8192,7 +8613,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:05:15 GMT
+ - Thu, 15 Apr 2021 07:39:02 GMT
expires:
- '-1'
pragma:
@@ -8209,7 +8630,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 06ef64aa-87f4-4223-a981-4c435833090a
+ - 689ff22b-5729-4de1-baff-fcfd7b2706fd
status:
code: 200
message: OK
@@ -8227,9 +8648,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8241,7 +8662,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:07:56 GMT
+ - Thu, 15 Apr 2021 07:39:43 GMT
expires:
- '-1'
pragma:
@@ -8258,7 +8679,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7dbae5ff-2a23-4263-9f1d-c832402c5905
+ - dc6958e7-885f-4c22-8301-e2b298e05193
status:
code: 200
message: OK
@@ -8276,9 +8697,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8290,7 +8711,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:09:37 GMT
+ - Thu, 15 Apr 2021 07:41:02 GMT
expires:
- '-1'
pragma:
@@ -8307,7 +8728,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 61e8078b-fa16-4ec8-a4d6-8266a7ab2f39
+ - c13d0a43-9dbd-445c-b74e-602ba93d279f
status:
code: 200
message: OK
@@ -8325,9 +8746,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8339,7 +8760,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:11:17 GMT
+ - Thu, 15 Apr 2021 07:43:43 GMT
expires:
- '-1'
pragma:
@@ -8356,7 +8777,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - ac9658a3-e71a-4484-b071-3a30a3bd64ba
+ - cdf3ddb1-a672-4f2c-aecf-f495db0d6600
status:
code: 200
message: OK
@@ -8374,9 +8795,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8388,7 +8809,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:12:58 GMT
+ - Thu, 15 Apr 2021 07:45:24 GMT
expires:
- '-1'
pragma:
@@ -8405,7 +8826,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 025a7f00-5535-4758-b193-1658477f4ab6
+ - 12344c80-2060-4d7b-822e-09db244dcee2
status:
code: 200
message: OK
@@ -8423,9 +8844,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8437,7 +8858,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:14:37 GMT
+ - Thu, 15 Apr 2021 07:47:04 GMT
expires:
- '-1'
pragma:
@@ -8454,7 +8875,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 4d649f41-4aac-43f4-85fa-bc70620b75c6
+ - 2b5036ed-0c6a-468a-a60d-d52ba58de0d5
status:
code: 200
message: OK
@@ -8472,9 +8893,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8486,7 +8907,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:18 GMT
+ - Thu, 15 Apr 2021 07:48:46 GMT
expires:
- '-1'
pragma:
@@ -8503,7 +8924,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 26a10634-a232-4f16-a374-a7298c57c01e
+ - 44160898-4d70-43ae-a8d4-d49aaea2d004
status:
code: 200
message: OK
@@ -8521,9 +8942,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8535,7 +8956,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:17:59 GMT
+ - Thu, 15 Apr 2021 07:50:27 GMT
expires:
- '-1'
pragma:
@@ -8552,7 +8973,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8224630d-cecd-4eef-9fdc-12eadda9b2a3
+ - ddaf2d37-4ca1-4213-b6c5-d4be139440bd
status:
code: 200
message: OK
@@ -8570,9 +8991,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8584,7 +9005,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:19:39 GMT
+ - Thu, 15 Apr 2021 07:52:09 GMT
expires:
- '-1'
pragma:
@@ -8601,7 +9022,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c440f265-6001-43b5-a552-559fb7679400
+ - ae4df545-11ce-42f4-96aa-1039783ab1a2
status:
code: 200
message: OK
@@ -8619,9 +9040,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8633,7 +9054,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:21:19 GMT
+ - Thu, 15 Apr 2021 07:53:49 GMT
expires:
- '-1'
pragma:
@@ -8650,7 +9071,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - de98456e-b876-494d-902f-9b9c79f18f7b
+ - 735178ec-33f5-4294-a452-2a5ba29a7c55
status:
code: 200
message: OK
@@ -8668,9 +9089,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8682,7 +9103,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:23:00 GMT
+ - Thu, 15 Apr 2021 07:55:30 GMT
expires:
- '-1'
pragma:
@@ -8699,7 +9120,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 83aff782-e008-44ca-9628-4c56bed59410
+ - e25c3e17-b028-4944-9c5a-473db67e2c6b
status:
code: 200
message: OK
@@ -8717,9 +9138,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8731,7 +9152,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:24:40 GMT
+ - Thu, 15 Apr 2021 07:57:10 GMT
expires:
- '-1'
pragma:
@@ -8748,7 +9169,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8cc7b8ab-c62c-4c94-a845-8952afb6a105
+ - a24306f0-0aac-4c92-ab6a-09c34a53d4c3
status:
code: 200
message: OK
@@ -8766,9 +9187,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8780,7 +9201,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:24 GMT
+ - Thu, 15 Apr 2021 07:58:51 GMT
expires:
- '-1'
pragma:
@@ -8797,7 +9218,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - ba8516c6-f685-41a4-9568-ab119a58f837
+ - 862ef393-01ea-44c9-b41c-5e3e7b1cafe7
status:
code: 200
message: OK
@@ -8815,9 +9236,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8829,7 +9250,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:28:03 GMT
+ - Thu, 15 Apr 2021 08:00:32 GMT
expires:
- '-1'
pragma:
@@ -8846,7 +9267,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 709591c8-a0ce-4cbc-82de-094d017da282
+ - aff7513a-d11f-4058-a84c-949a026d4077
status:
code: 200
message: OK
@@ -8864,9 +9285,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8878,7 +9299,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:29:44 GMT
+ - Thu, 15 Apr 2021 08:02:12 GMT
expires:
- '-1'
pragma:
@@ -8895,7 +9316,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f3ad797c-51ec-40e0-a2df-39930c28ed08
+ - 51f5e022-be1a-4d13-bed2-ea1aca974b79
status:
code: 200
message: OK
@@ -8913,9 +9334,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8927,7 +9348,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:31:24 GMT
+ - Thu, 15 Apr 2021 08:03:52 GMT
expires:
- '-1'
pragma:
@@ -8944,7 +9365,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 0104780a-331e-42d3-9f3b-745db9dffb3a
+ - 4dc22902-d938-4bca-992e-5d877ad002ac
status:
code: 200
message: OK
@@ -8962,9 +9383,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -8976,7 +9397,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:33:05 GMT
+ - Thu, 15 Apr 2021 08:05:33 GMT
expires:
- '-1'
pragma:
@@ -8993,7 +9414,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 708a06bb-f584-4f9f-bf02-b100c2affa6a
+ - 6cd91650-40ef-4d82-a7f6-88a54e27077f
status:
code: 200
message: OK
@@ -9011,9 +9432,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -9025,7 +9446,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:34:44 GMT
+ - Thu, 15 Apr 2021 08:07:14 GMT
expires:
- '-1'
pragma:
@@ -9042,7 +9463,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - bc3ff237-878e-4d17-ad64-20d33d66a2dd
+ - 4cd9f660-a28c-406c-9969-37e8aaa742c7
status:
code: 200
message: OK
@@ -9060,9 +9481,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -9074,7 +9495,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:36:25 GMT
+ - Thu, 15 Apr 2021 08:08:55 GMT
expires:
- '-1'
pragma:
@@ -9091,7 +9512,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c209402e-a06f-4e01-82a9-e17686036154
+ - f2c9a8da-50b8-41c1-adfb-cc4f94306429
status:
code: 200
message: OK
@@ -9109,9 +9530,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -9123,7 +9544,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:38:06 GMT
+ - Thu, 15 Apr 2021 08:10:35 GMT
expires:
- '-1'
pragma:
@@ -9140,7 +9561,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - d49c3569-a144-40a6-83e5-f67e2d299fe8
+ - a04f1d8c-c386-401b-91a7-82b4900027bd
status:
code: 200
message: OK
@@ -9158,9 +9579,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -9172,7 +9593,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:39:46 GMT
+ - Thu, 15 Apr 2021 08:12:16 GMT
expires:
- '-1'
pragma:
@@ -9189,7 +9610,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e5e0b4e1-1f7a-40bb-b485-4f777d9aaf64
+ - 8b405b37-09de-460d-a67e-c53f1efa70e8
status:
code: 200
message: OK
@@ -9207,9 +9628,9 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b2ae26c-d011-4e5d-8a3f-1d0072a24f3c?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/018ac0e6-6852-46c4-9ac6-0b2f3f0c7618?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -9221,7 +9642,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:41:27 GMT
+ - Thu, 15 Apr 2021 08:13:56 GMT
expires:
- '-1'
pragma:
@@ -9238,7 +9659,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5b017cd0-9e53-46b0-882d-6a5083d637d1
+ - 63a5f4e6-2f80-4fb9-af54-d6dd1a33844f
status:
code: 200
message: OK
@@ -9256,20 +9677,20 @@ interactions:
ParameterSetName:
- -g -n --sku --custom-routes
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"518210fd-ebee-428d-930b-2490ed202ed3\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"ef7b2a01-b1f6-4638-ac2d-cfafce9de29a\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"518210fd-ebee-428d-930b-2490ed202ed3\\\"\",\r\n
+ \ \"etag\": \"W/\\\"ef7b2a01-b1f6-4638-ac2d-cfafce9de29a\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -9285,7 +9706,7 @@ interactions:
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"40.112.208.116\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"168.61.17.254\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"customRoutes\": {\r\n \"addressPrefixes\": [\r\n \"101.168.0.6/32\",\r\n
\ \"102.168.0.6/32\"\r\n ]\r\n },\r\n \"vpnGatewayGeneration\":
\"Generation1\"\r\n }\r\n}"
@@ -9293,11 +9714,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2832'
+ - '2831'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:41:27 GMT
+ - Thu, 15 Apr 2021 08:13:57 GMT
expires:
- '-1'
pragma:
@@ -9314,7 +9735,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7bba94bb-6cda-4967-9645-79335ec5af38
+ - 7925fc2f-bd9d-4fde-acf7-57121f720e45
status:
code: 200
message: OK
@@ -9332,20 +9753,20 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
- \ \"etag\": \"W/\\\"174a515b-6150-481d-a7d6-58cd211dd8f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"066543fb-4a6c-40ce-8c62-0a4497e7ec8b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"c78f3890-3d6e-49f9-a268-e7d4fadfb686\",\r\n \"packetCaptureDiagnosticState\":
+ \"c23d09b4-281b-4afd-a436-7098ff4fcbbd\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"174a515b-6150-481d-a7d6-58cd211dd8f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"066543fb-4a6c-40ce-8c62-0a4497e7ec8b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -9361,7 +9782,7 @@ interactions:
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.1.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.111.18\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"104.42.18.137\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
@@ -9371,7 +9792,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:41:28 GMT
+ - Thu, 15 Apr 2021 08:13:58 GMT
expires:
- '-1'
pragma:
@@ -9388,7 +9809,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a3ceb147-e5b0-4af6-a27a-145f30827540
+ - 92995202-5e6f-491a-909e-5a73ab55a44a
status:
code: 200
message: OK
@@ -9406,20 +9827,20 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3\",\r\n
- \ \"etag\": \"W/\\\"2af15ca3-390a-42ba-8614-1bc5c3f496e3\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"5fb50174-a742-44a2-96b0-855739b8362b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"7b77e830-48cb-4038-a63f-c98faa7e8e38\",\r\n \"packetCaptureDiagnosticState\":
+ \"79eea2b6-e1c8-4fa0-a3d8-47b5eb1c2d10\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"2af15ca3-390a-42ba-8614-1bc5c3f496e3\\\"\",\r\n
+ \ \"etag\": \"W/\\\"5fb50174-a742-44a2-96b0-855739b8362b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -9435,17 +9856,17 @@ interactions:
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway3/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.2.250.250\"\r\n
\ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"40.112.208.119\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"104.42.7.34\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2715'
+ - '2712'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:41:29 GMT
+ - Thu, 15 Apr 2021 08:13:59 GMT
expires:
- '-1'
pragma:
@@ -9462,7 +9883,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c2d8847e-f505-4ac3-9ef8-b43d07392f20
+ - f4eb94b1-964d-4730-a5c0-fc5e8cef24e0
status:
code: 200
message: OK
@@ -9480,15 +9901,15 @@ interactions:
ParameterSetName:
- -n -g --shared-key --vnet-gateway1 --vnet-gateway2 --tags
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T06:21:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:53:36Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -9497,7 +9918,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:41:29 GMT
+ - Thu, 15 Apr 2021 08:13:59 GMT
expires:
- '-1'
pragma:
@@ -9539,18 +9960,18 @@ interactions:
ParameterSetName:
- -n -g --shared-key --vnet-gateway1 --vnet-gateway2 --tags
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_qoCVtVlKKAX5WvzXiGv8njYRc5cFHFOO","name":"vpn_connection_deploy_qoCVtVlKKAX5WvzXiGv8njYRc5cFHFOO","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16207537388503300887","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-03-04T07:41:34.5986032Z","duration":"PT2.3105359S","correlationId":"d52dcbd5-be7a-45b9-a46d-31c2edb08bfc","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_seWR9zUinRK1Jigwa161dWuNlIyS7XQC","name":"vpn_connection_deploy_seWR9zUinRK1Jigwa161dWuNlIyS7XQC","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10102982647809218728","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-15T08:14:03.9870438Z","duration":"PT2.0745544S","correlationId":"4b9685c4-bea6-4cf9-9415-6817de8b87fb","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_qoCVtVlKKAX5WvzXiGv8njYRc5cFHFOO/operationStatuses/08585867631931895476?api-version=2020-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_seWR9zUinRK1Jigwa161dWuNlIyS7XQC/operationStatuses/08585831324435651286?api-version=2020-10-01
cache-control:
- no-cache
content-length:
@@ -9558,7 +9979,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:41:34 GMT
+ - Thu, 15 Apr 2021 08:14:04 GMT
expires:
- '-1'
pragma:
@@ -9568,7 +9989,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1178'
+ - '1199'
status:
code: 201
message: Created
@@ -9586,10 +10007,10 @@ interactions:
ParameterSetName:
- -n -g --shared-key --vnet-gateway1 --vnet-gateway2 --tags
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585867631931895476?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831324435651286?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -9601,7 +10022,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:42:06 GMT
+ - Thu, 15 Apr 2021 08:14:36 GMT
expires:
- '-1'
pragma:
@@ -9629,10 +10050,10 @@ interactions:
ParameterSetName:
- -n -g --shared-key --vnet-gateway1 --vnet-gateway2 --tags
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585867631931895476?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831324435651286?api-version=2020-10-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -9644,7 +10065,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:42:37 GMT
+ - Thu, 15 Apr 2021 08:15:06 GMT
expires:
- '-1'
pragma:
@@ -9672,22 +10093,22 @@ interactions:
ParameterSetName:
- -n -g --shared-key --vnet-gateway1 --vnet-gateway2 --tags
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_qoCVtVlKKAX5WvzXiGv8njYRc5cFHFOO","name":"vpn_connection_deploy_qoCVtVlKKAX5WvzXiGv8njYRc5cFHFOO","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16207537388503300887","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-03-04T07:42:13.9114385Z","duration":"PT41.6233712S","correlationId":"d52dcbd5-be7a-45b9-a46d-31c2edb08bfc","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"7fdc73cf-0a02-4686-b0b0-4ec44feb8750","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},"connectionType":"Vnet2Vnet","connectionProtocol":"IKEv2","routingWeight":10,"sharedKey":"123","enableBgp":false,"useLocalAzureIpAddress":false,"trafficSelectorPolicies":[],"connectionStatus":"NotConnected","ingressBytesTransferred":0,"egressBytesTransferred":0,"dpdTimeoutSeconds":0,"connectionMode":"Default"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_seWR9zUinRK1Jigwa161dWuNlIyS7XQC","name":"vpn_connection_deploy_seWR9zUinRK1Jigwa161dWuNlIyS7XQC","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10102982647809218728","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-15T08:14:43.4607582Z","duration":"PT41.5482688S","correlationId":"4b9685c4-bea6-4cf9-9415-6817de8b87fb","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"e3ffe261-cf5c-4e84-b61e-da162634cbc7","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},"connectionType":"Vnet2Vnet","connectionProtocol":"IKEv2","routingWeight":10,"sharedKey":"123","enableBgp":false,"useLocalAzureIpAddress":false,"trafficSelectorPolicies":[],"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0,"dpdTimeoutSeconds":0,"connectionMode":"Default"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '1916'
+ - '1911'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:42:37 GMT
+ - Thu, 15 Apr 2021 08:15:06 GMT
expires:
- '-1'
pragma:
@@ -9715,16 +10136,16 @@ interactions:
ParameterSetName:
- -n -g --routing-weight --tags
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"conn1to2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2\",\r\n
- \ \"etag\": \"W/\\\"026fd1c6-d1d6-461e-8088-35c2bf1e0890\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"dbbce5d8-509a-4e16-8364-16249975b9a8\\\"\",\r\n \"type\":
\"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"tags\":
{\r\n \"foo\": \"doo\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"7fdc73cf-0a02-4686-b0b0-4ec44feb8750\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"e3ffe261-cf5c-4e84-b61e-da162634cbc7\",\r\n
\ \"packetCaptureDiagnosticState\": \"None\",\r\n \"virtualNetworkGateway1\":
{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\r\n
\ },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\r\n
@@ -9744,7 +10165,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:42:39 GMT
+ - Thu, 15 Apr 2021 08:15:08 GMT
expires:
- '-1'
pragma:
@@ -9761,7 +10182,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5c20b4cd-419b-460b-8de0-893ecf2e49be
+ - 695eaf48-ca22-4d68-a14e-4eae7143f335
status:
code: 200
message: OK
@@ -9779,20 +10200,20 @@ interactions:
ParameterSetName:
- -n -g --routing-weight --tags
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\",\r\n
- \ \"etag\": \"W/\\\"ce2f9746-a745-4076-b1bd-9821832f6c3e\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"245a0b2e-f4a8-4785-9e3a-19d2e7bbf22a\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"bcb4dd16-9ebb-4823-951f-2f1f7ae903b9\",\r\n \"packetCaptureDiagnosticState\":
+ \"cd9ff346-458b-4825-ba2c-56d611f0b1af\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ce2f9746-a745-4076-b1bd-9821832f6c3e\\\"\",\r\n
+ \ \"etag\": \"W/\\\"245a0b2e-f4a8-4785-9e3a-19d2e7bbf22a\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -9808,7 +10229,7 @@ interactions:
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"40.112.208.116\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"168.61.17.254\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"customRoutes\": {\r\n \"addressPrefixes\": [\r\n \"101.168.0.6/32\",\r\n
\ \"102.168.0.6/32\"\r\n ]\r\n },\r\n \"vpnGatewayGeneration\":
\"Generation1\"\r\n }\r\n}"
@@ -9816,11 +10237,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2832'
+ - '2831'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:42:40 GMT
+ - Thu, 15 Apr 2021 08:15:09 GMT
expires:
- '-1'
pragma:
@@ -9837,7 +10258,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c2979e58-d59f-45b8-839e-a9144ef739b7
+ - 7635de46-7422-40f8-9d2d-4ff8217f31a3
status:
code: 200
message: OK
@@ -9855,20 +10276,20 @@ interactions:
ParameterSetName:
- -n -g --routing-weight --tags
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gateway2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\",\r\n
- \ \"etag\": \"W/\\\"174a515b-6150-481d-a7d6-58cd211dd8f2\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"066543fb-4a6c-40ce-8c62-0a4497e7ec8b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"c78f3890-3d6e-49f9-a268-e7d4fadfb686\",\r\n \"packetCaptureDiagnosticState\":
+ \"c23d09b4-281b-4afd-a436-7098ff4fcbbd\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"174a515b-6150-481d-a7d6-58cd211dd8f2\\\"\",\r\n
+ \ \"etag\": \"W/\\\"066543fb-4a6c-40ce-8c62-0a4497e7ec8b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -9884,7 +10305,7 @@ interactions:
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.1.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.111.18\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"104.42.18.137\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
@@ -9894,7 +10315,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:42:40 GMT
+ - Thu, 15 Apr 2021 08:15:09 GMT
expires:
- '-1'
pragma:
@@ -9911,7 +10332,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - de5860e4-2e51-44f4-b30f-6987edb69e6a
+ - 737edeec-c076-4123-97ad-c3220a4bf517
status:
code: 200
message: OK
@@ -9960,16 +10381,16 @@ interactions:
ParameterSetName:
- -n -g --routing-weight --tags
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"conn1to2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2\",\r\n
- \ \"etag\": \"W/\\\"895bb9bd-b989-48a0-a3ca-f0e68053a5ca\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"89a3363d-813f-4469-8540-7fe317c1f0c5\\\"\",\r\n \"type\":
\"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"tags\":
{\r\n \"foo\": \"boo\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\":
- \"Updating\",\r\n \"resourceGuid\": \"7fdc73cf-0a02-4686-b0b0-4ec44feb8750\",\r\n
+ \"Updating\",\r\n \"resourceGuid\": \"e3ffe261-cf5c-4e84-b61e-da162634cbc7\",\r\n
\ \"packetCaptureDiagnosticState\": \"None\",\r\n \"virtualNetworkGateway1\":
{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\r\n
\ },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\r\n
@@ -9984,7 +10405,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b3b7f773-1e4e-4113-a187-b94903469e02?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eb56fb1c-8f4a-4b58-93df-53c5f1ee8084?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -9992,7 +10413,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:42:46 GMT
+ - Thu, 15 Apr 2021 08:15:14 GMT
expires:
- '-1'
pragma:
@@ -10009,9 +10430,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6ee546d6-831a-403b-92cb-272d6aafc1bb
+ - 0a427280-bffe-4e76-b53e-c52c89a1986d
x-ms-ratelimit-remaining-subscription-writes:
- - '1175'
+ - '1198'
status:
code: 200
message: OK
@@ -10029,9 +10450,9 @@ interactions:
ParameterSetName:
- -n -g --routing-weight --tags
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b3b7f773-1e4e-4113-a187-b94903469e02?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eb56fb1c-8f4a-4b58-93df-53c5f1ee8084?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -10043,7 +10464,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:42:56 GMT
+ - Thu, 15 Apr 2021 08:15:24 GMT
expires:
- '-1'
pragma:
@@ -10060,7 +10481,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - eacab67a-3492-4203-b7f7-b343744bf824
+ - 0c9902d1-692b-4b3c-9b85-4b29c24f48d1
status:
code: 200
message: OK
@@ -10078,9 +10499,9 @@ interactions:
ParameterSetName:
- -n -g --routing-weight --tags
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b3b7f773-1e4e-4113-a187-b94903469e02?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eb56fb1c-8f4a-4b58-93df-53c5f1ee8084?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -10092,7 +10513,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:43:06 GMT
+ - Thu, 15 Apr 2021 08:15:35 GMT
expires:
- '-1'
pragma:
@@ -10109,7 +10530,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 131b1846-a7c6-4e56-9b76-a0d7e4a050cb
+ - 851b8e57-39b3-4bbf-a335-db5bbb59f6b8
status:
code: 200
message: OK
@@ -10127,9 +10548,9 @@ interactions:
ParameterSetName:
- -n -g --routing-weight --tags
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b3b7f773-1e4e-4113-a187-b94903469e02?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eb56fb1c-8f4a-4b58-93df-53c5f1ee8084?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -10141,7 +10562,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:43:26 GMT
+ - Thu, 15 Apr 2021 08:15:55 GMT
expires:
- '-1'
pragma:
@@ -10158,7 +10579,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 04dc9042-8a67-4147-bb59-3eaeec5c66fd
+ - 73e570cd-3a4b-498d-89e9-f94a06f2ed0a
status:
code: 200
message: OK
@@ -10176,9 +10597,9 @@ interactions:
ParameterSetName:
- -n -g --routing-weight --tags
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b3b7f773-1e4e-4113-a187-b94903469e02?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eb56fb1c-8f4a-4b58-93df-53c5f1ee8084?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -10190,7 +10611,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:43:47 GMT
+ - Thu, 15 Apr 2021 08:16:15 GMT
expires:
- '-1'
pragma:
@@ -10207,7 +10628,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1c2af9f5-b01a-4636-a70f-acdad00981f8
+ - 255cf2b1-efc1-47d4-9e40-c4f5b5b44d6e
status:
code: 200
message: OK
@@ -10225,16 +10646,16 @@ interactions:
ParameterSetName:
- -n -g --routing-weight --tags
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"conn1to2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2\",\r\n
- \ \"etag\": \"W/\\\"f6c63886-b800-40e3-a0ec-e8a3acc74cb0\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"46ab1a1a-e1e1-4389-8813-ee9c16c4a37c\\\"\",\r\n \"type\":
\"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"tags\":
{\r\n \"foo\": \"boo\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"7fdc73cf-0a02-4686-b0b0-4ec44feb8750\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"e3ffe261-cf5c-4e84-b61e-da162634cbc7\",\r\n
\ \"packetCaptureDiagnosticState\": \"None\",\r\n \"virtualNetworkGateway1\":
{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\r\n
\ },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\r\n
@@ -10254,7 +10675,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:43:47 GMT
+ - Thu, 15 Apr 2021 08:16:15 GMT
expires:
- '-1'
pragma:
@@ -10271,7 +10692,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 62871fef-68b5-43a4-9efd-f173b53a72c5
+ - e23f194e-f2a8-4a12-a6a7-51ad2a1628d0
status:
code: 200
message: OK
@@ -10289,15 +10710,15 @@ interactions:
ParameterSetName:
- -n -g --shared-key --vnet-gateway2 --vnet-gateway1
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T06:21:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001","name":"cli_test_vpn_gateway000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:53:36Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -10306,7 +10727,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:43:48 GMT
+ - Thu, 15 Apr 2021 08:16:16 GMT
expires:
- '-1'
pragma:
@@ -10348,26 +10769,26 @@ interactions:
ParameterSetName:
- -n -g --shared-key --vnet-gateway2 --vnet-gateway1
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_UV1K66g4G1z5k8DqaP1dnWUTwCDSjlu3","name":"vpn_connection_deploy_UV1K66g4G1z5k8DqaP1dnWUTwCDSjlu3","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16014867293349290672","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-03-04T07:43:52.7214586Z","duration":"PT1.96657S","correlationId":"7bcbdf24-6845-4fd7-b07c-671d5ed92b8b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_dgAM1GwRzacYmfhYiDcPa5SDyMGTb3km","name":"vpn_connection_deploy_dgAM1GwRzacYmfhYiDcPa5SDyMGTb3km","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2727593547191598749","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-15T08:16:21.3611488Z","duration":"PT2.1612368S","correlationId":"eac6e51b-ee8f-4b2c-ae57-19101baa0816","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_UV1K66g4G1z5k8DqaP1dnWUTwCDSjlu3/operationStatuses/08585867630547227326?api-version=2020-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_dgAM1GwRzacYmfhYiDcPa5SDyMGTb3km/operationStatuses/08585831323062777176?api-version=2020-10-01
cache-control:
- no-cache
content-length:
- - '769'
+ - '770'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:43:53 GMT
+ - Thu, 15 Apr 2021 08:16:21 GMT
expires:
- '-1'
pragma:
@@ -10377,7 +10798,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1177'
+ - '1199'
status:
code: 201
message: Created
@@ -10395,10 +10816,10 @@ interactions:
ParameterSetName:
- -n -g --shared-key --vnet-gateway2 --vnet-gateway1
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585867630547227326?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831323062777176?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -10410,7 +10831,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:44:25 GMT
+ - Thu, 15 Apr 2021 08:16:52 GMT
expires:
- '-1'
pragma:
@@ -10438,10 +10859,10 @@ interactions:
ParameterSetName:
- -n -g --shared-key --vnet-gateway2 --vnet-gateway1
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585867630547227326?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831323062777176?api-version=2020-10-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -10453,7 +10874,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:44:55 GMT
+ - Thu, 15 Apr 2021 08:17:23 GMT
expires:
- '-1'
pragma:
@@ -10481,22 +10902,22 @@ interactions:
ParameterSetName:
- -n -g --shared-key --vnet-gateway2 --vnet-gateway1
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_UV1K66g4G1z5k8DqaP1dnWUTwCDSjlu3","name":"vpn_connection_deploy_UV1K66g4G1z5k8DqaP1dnWUTwCDSjlu3","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16014867293349290672","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-03-04T07:44:31.9421233Z","duration":"PT41.1872347S","correlationId":"7bcbdf24-6845-4fd7-b07c-671d5ed92b8b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"c61d1e2f-af16-4759-ad62-ffe108766766","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},"connectionType":"Vnet2Vnet","connectionProtocol":"IKEv2","routingWeight":10,"sharedKey":"123","enableBgp":false,"useLocalAzureIpAddress":false,"trafficSelectorPolicies":[],"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0,"dpdTimeoutSeconds":0,"connectionMode":"Default"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn2to1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_dgAM1GwRzacYmfhYiDcPa5SDyMGTb3km","name":"vpn_connection_deploy_dgAM1GwRzacYmfhYiDcPa5SDyMGTb3km","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2727593547191598749","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-15T08:17:04.6169498Z","duration":"PT45.4170378S","correlationId":"eac6e51b-ee8f-4b2c-ae57-19101baa0816","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"016deafd-ba81-47ab-9df1-952b7ed7ca94","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1"},"connectionType":"Vnet2Vnet","connectionProtocol":"IKEv2","routingWeight":10,"sharedKey":"123","enableBgp":false,"useLocalAzureIpAddress":false,"trafficSelectorPolicies":[],"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0,"dpdTimeoutSeconds":0,"connectionMode":"Default"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn2to1"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '1911'
+ - '1910'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:44:55 GMT
+ - Thu, 15 Apr 2021 08:17:24 GMT
expires:
- '-1'
pragma:
@@ -10526,7 +10947,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/getLearnedRoutes?api-version=2020-11-01
response:
@@ -10540,11 +10961,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:44:57 GMT
+ - Thu, 15 Apr 2021 08:17:25 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/6f0a20d7-947f-45d0-bdc8-627a3eae6c68?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/2d136527-d803-44d0-8acd-8cfdcac9acaa?api-version=2020-11-01
pragma:
- no-cache
server:
@@ -10555,7 +10976,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 2140811e-75bd-480d-b0a6-5f598f04f423
+ - 5cfbe3b5-5460-4ddf-acc6-e566d17f8fb8
x-ms-ratelimit-remaining-subscription-writes:
- '1199'
status:
@@ -10575,9 +10996,9 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/6f0a20d7-947f-45d0-bdc8-627a3eae6c68?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/2d136527-d803-44d0-8acd-8cfdcac9acaa?api-version=2020-11-01
response:
body:
string: "{\r\n \"value\": []\r\n}"
@@ -10589,11 +11010,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:45:08 GMT
+ - Thu, 15 Apr 2021 08:17:35 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/6f0a20d7-947f-45d0-bdc8-627a3eae6c68?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/2d136527-d803-44d0-8acd-8cfdcac9acaa?api-version=2020-11-01
pragma:
- no-cache
server:
@@ -10608,7 +11029,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 2140811e-75bd-480d-b0a6-5f598f04f423
+ - 5cfbe3b5-5460-4ddf-acc6-e566d17f8fb8
status:
code: 200
message: OK
@@ -10628,7 +11049,7 @@ interactions:
ParameterSetName:
- -g -n --peer
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/getAdvertisedRoutes?peer=10.1.1.1&api-version=2020-11-01
response:
@@ -10642,11 +11063,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:45:10 GMT
+ - Thu, 15 Apr 2021 08:17:36 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/1e8e8249-84dc-4bde-b7c2-3936524e21a2?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/13bdc79e-d7ad-4feb-b603-85607aa5561b?api-version=2020-11-01
pragma:
- no-cache
server:
@@ -10657,9 +11078,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1b45a0f2-44bc-40f9-83cb-2a8113ebfc91
+ - 770c223d-d232-464c-8cc5-d4bc14a60881
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
status:
code: 202
message: Accepted
@@ -10677,9 +11098,9 @@ interactions:
ParameterSetName:
- -g -n --peer
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/1e8e8249-84dc-4bde-b7c2-3936524e21a2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/13bdc79e-d7ad-4feb-b603-85607aa5561b?api-version=2020-11-01
response:
body:
string: "{\r\n \"value\": [\r\n {\r\n \"localAddress\": \"\",\r\n \"network\":
@@ -10693,11 +11114,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:45:20 GMT
+ - Thu, 15 Apr 2021 08:17:47 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/1e8e8249-84dc-4bde-b7c2-3936524e21a2?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/13bdc79e-d7ad-4feb-b603-85607aa5561b?api-version=2020-11-01
pragma:
- no-cache
server:
@@ -10712,7 +11133,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1b45a0f2-44bc-40f9-83cb-2a8113ebfc91
+ - 770c223d-d232-464c-8cc5-d4bc14a60881
status:
code: 200
message: OK
@@ -10732,7 +11153,7 @@ interactions:
ParameterSetName:
- -g -n --peer
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/getBgpPeerStatus?peer=10.1.1.1&api-version=2020-11-01
response:
@@ -10746,11 +11167,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:45:21 GMT
+ - Thu, 15 Apr 2021 08:17:48 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/ccf00b06-09ce-4868-a136-a3d7569a0d0f?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/686f2b28-01f0-4328-a3f3-072de4eb43af?api-version=2020-11-01
pragma:
- no-cache
server:
@@ -10761,9 +11182,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 517b8031-94ca-4d52-b0e7-2a8ce13637da
+ - b36500f1-69aa-49bd-8e48-0a81b06ff3a1
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
status:
code: 202
message: Accepted
@@ -10781,9 +11202,9 @@ interactions:
ParameterSetName:
- -g -n --peer
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/ccf00b06-09ce-4868-a136-a3d7569a0d0f?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/686f2b28-01f0-4328-a3f3-072de4eb43af?api-version=2020-11-01
response:
body:
string: "{\r\n \"value\": []\r\n}"
@@ -10795,11 +11216,75 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:45:31 GMT
+ - Thu, 15 Apr 2021 08:17:58 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/ccf00b06-09ce-4868-a136-a3d7569a0d0f?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/686f2b28-01f0-4328-a3f3-072de4eb43af?api-version=2020-11-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - b36500f1-69aa-49bd-8e48-0a81b06ff3a1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vpn-connection list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --vnet-gateway
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1/connections?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"conn1to2\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/connections/conn1to2\",\r\n
+ \ \"etag\": \"W/\\\"46ab1a1a-e1e1-4389-8813-ee9c16c4a37c\\\"\",\r\n \"type\":
+ \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {\r\n \"foo\": \"boo\"\r\n },\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"e3ffe261-cf5c-4e84-b61e-da162634cbc7\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway1\"\r\n
+ \ },\r\n \"virtualNetworkGateway2\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway000001/providers/Microsoft.Network/virtualNetworkGateways/gateway2\"\r\n
+ \ },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"connectionProtocol\":
+ \"IKEv2\",\r\n \"routingWeight\": 25,\r\n \"enableBgp\": false,\r\n
+ \ \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\":
+ false,\r\n \"ipsecPolicies\": [],\r\n \"trafficSelectorPolicies\":
+ [],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\":
+ 0,\r\n \"expressRouteGatewayBypass\": false,\r\n \"dpdTimeoutSeconds\":
+ 0,\r\n \"connectionMode\": \"Default\"\r\n }\r\n }\r\n ]\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1683'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 08:18:00 GMT
+ expires:
+ - '-1'
pragma:
- no-cache
server:
@@ -10814,7 +11299,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 517b8031-94ca-4d52-b0e7-2a8ce13637da
+ - 7216fd10-1985-45cd-955d-e342911e3752
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 d629e150b33..489e0b189d5 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
@@ -4140,7 +4140,7 @@ def test_network_vpn_gateway(self, resource_group):
self.cmd('network vnet-gateway list-advertised-routes -g {rg} -n {gw1} --peer 10.1.1.1')
self.cmd('network vnet-gateway list-bgp-peer-status -g {rg} -n {gw1} --peer 10.1.1.1')
self.cmd('network vpn-connection list -g {rg} --vnet-gateway {gw1}', checks=[
- self.check('length(@)', 2)
+ self.check('length(@)', 1)
])
@ResourceGroupPreparer(name_prefix='cli_test_vpn_gateway_aad_')
From 22a8f2e9ec60d1cb331eac3f93b5205401a03eb0 Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Fri, 16 Apr 2021 09:40:02 +0800
Subject: [PATCH 10/19] fix lint issues
---
.../cli/command_modules/network/_params.py | 32 +++++++++++--------
.../command_modules/network/_validators.py | 2 ++
.../cli/command_modules/network/custom.py | 5 ++-
.../tests/latest/recording_processors.py | 1 +
4 files changed, 25 insertions(+), 15 deletions(-)
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 94d18b2e4a1..60c1f73893a 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_params.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_params.py
@@ -2036,21 +2036,25 @@ def load_arguments(self, _):
with self.argument_context('network routeserver peering list') as c:
c.argument('virtual_hub_name', id_part=None)
- param_map = {
- 'dh_group': 'DhGroup',
- 'ike_encryption': 'IkeEncryption',
- 'ike_integrity': 'IkeIntegrity',
- 'ipsec_encryption': 'IpsecEncryption',
- 'ipsec_integrity': 'IpsecIntegrity',
- 'pfs_group': 'PfsGroup'
- }
for scope in ['vpn-connection', 'vnet-gateway', 'vnet-gateway vpn-client']:
- with self.argument_context('network {} ipsec-policy'.format(scope)) as c:
- for dest, model_name in param_map.items():
- model = self.get_models(model_name)
- c.argument(dest, arg_type=get_enum_type(model))
- c.argument('sa_data_size_kilobytes', options_list=['--sa-max-size'], type=int)
- c.argument('sa_life_time_seconds', options_list=['--sa-lifetime'], type=int)
+ with self.argument_context('network {} ipsec-policy'.format(scope), arg_group='Security Association') as c:
+ c.argument('sa_data_size_kilobytes', options_list=['--sa-max-size'], type=int, help='The payload size in KB for P2S client.')
+ c.argument('sa_life_time_seconds', options_list=['--sa-lifetime'], type=int, help='The lifetime in seconds for P2S client.')
+ with self.argument_context('network {} ipsec-policy'.format(scope), arg_group='IKE Phase 1') as c:
+ c.argument('dh_group', arg_type=get_enum_type(self.get_models('DhGroup')),
+ help='The DH Groups used for initial SA.')
+ c.argument('ipsec_encryption', arg_type=get_enum_type(self.get_models('IpsecEncryption')),
+ help='The IPSec encryption algorithm.')
+ c.argument('ipsec_integrity', arg_type=get_enum_type(self.get_models('IpsecIntegrity')),
+ help='The IPSec integrity algorithm.')
+ with self.argument_context('network {} ipsec-policy'.format(scope), arg_group='IKE Phase 2') as c:
+ c.argument('pfs_group', arg_type=get_enum_type(self.get_models('PfsGroup')),
+ help='The Pfs Groups used for new child SA.')
+ c.argument('ike_encryption', arg_type=get_enum_type(self.get_models('IkeEncryption')),
+ help='The IKE encryption algorithm.')
+ c.argument('ike_integrity', arg_type=get_enum_type(self.get_models('IkeIntegrity')),
+ help='The IKE integrity algorithm.')
+
# endregion
# region Remove --ids from listsaz
diff --git a/src/azure-cli/azure/cli/command_modules/network/_validators.py b/src/azure-cli/azure/cli/command_modules/network/_validators.py
index 5359ff46e68..5c1a57a1ac4 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_validators.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_validators.py
@@ -116,6 +116,7 @@ def _validate_vpn_gateway_generation(namespace):
if namespace.gateway_type != 'Vpn' and namespace.vpn_gateway_generation:
raise CLIError('vpn_gateway_generation should not be provided if gateway_type is not Vpn.')
+
def validate_vpn_connection_name_or_id(cmd, namespace):
if namespace.vpn_connection_ids:
from msrestazure.tools import is_valid_resource_id, resource_id
@@ -130,6 +131,7 @@ def validate_vpn_connection_name_or_id(cmd, namespace):
name=vpn_connection_id
)
+
def validate_ddos_name_or_id(cmd, namespace):
if namespace.ddos_protection_plan:
from msrestazure.tools import is_valid_resource_id, resource_id
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 97521903372..1ee45d1513c 100644
--- a/src/azure-cli/azure/cli/command_modules/network/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/network/custom.py
@@ -6494,6 +6494,7 @@ def generate_vpn_client(cmd, client, resource_group_name, virtual_network_gatewa
# legacy implementation
return client.begin_generatevpnclientpackage(resource_group_name, virtual_network_gateway_name, params)
+
def set_vpn_client_ipsec_policy(cmd, client, resource_group_name, virtual_network_gateway_name,
sa_life_time_seconds, sa_data_size_kilobytes,
ipsec_encryption, ipsec_integrity,
@@ -6510,12 +6511,13 @@ def set_vpn_client_ipsec_policy(cmd, client, resource_group_name, virtual_networ
return sdk_no_wait(no_wait, client.begin_set_vpnclient_ipsec_parameters, resource_group_name,
virtual_network_gateway_name, vpnclient_ipsec_params)
+
def disconnect_vnet_gateway_vpn_connections(cmd, client, resource_group_name, virtual_network_gateway_name,
vpn_connection_ids, no_wait=False):
P2SVpnConnectionRequest = cmd.get_models('P2SVpnConnectionRequest')
request = P2SVpnConnectionRequest(vpn_connection_ids=vpn_connection_ids)
return sdk_no_wait(no_wait, client.begin_disconnect_virtual_network_gateway_vpn_connections,
- resource_group_name, virtual_network_gateway_name, request)
+ resource_group_name, virtual_network_gateway_name, request)
# endregion
@@ -6608,6 +6610,7 @@ def update_vpn_connection(cmd, instance, routing_weight=None, shared_key=None, t
return instance
+
def list_vpn_connections(cmd, resource_group_name, virtual_network_gateway_name=None):
if virtual_network_gateway_name:
client = network_client_factory(cmd.cli_ctx).virtual_network_gateways
diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recording_processors.py b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recording_processors.py
index 0a8017be163..9aecca1fe06 100644
--- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recording_processors.py
+++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recording_processors.py
@@ -4,6 +4,7 @@
# --------------------------------------------------------------------------------------------
from azure_devtools.scenario_tests import RecordingProcessor
+
def byte_to_str(byte_or_str):
return str(byte_or_str, 'utf-8') if isinstance(byte_or_str, bytes) else byte_or_str
From 3bc196da5934a8083dc27da97ad471677a5a1cfc Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Fri, 16 Apr 2021 12:35:05 +0800
Subject: [PATCH 11/19] fix style issues
---
src/azure-cli/azure/cli/command_modules/network/_validators.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/azure-cli/azure/cli/command_modules/network/_validators.py b/src/azure-cli/azure/cli/command_modules/network/_validators.py
index 5c1a57a1ac4..240d85d79d0 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_validators.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_validators.py
@@ -120,7 +120,6 @@ def _validate_vpn_gateway_generation(namespace):
def validate_vpn_connection_name_or_id(cmd, namespace):
if namespace.vpn_connection_ids:
from msrestazure.tools import is_valid_resource_id, resource_id
- from azure.cli.core.commands.client_factory import get_subscription_id
for index, vpn_connection_id in enumerate(namespace.vpn_connection_ids):
if not is_valid_resource_id(vpn_connection_id):
namespace.vpn_connection_ids[index] = resource_id(
From cd50e55a193215ba0f87b399d19da5b9b6accfad Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Tue, 30 Mar 2021 15:04:44 +0800
Subject: [PATCH 12/19] add commands: 'az network vpn-connection list-ike-sas',
'az network vpn-connection packet-capture start', 'az network vpn-connection
packet-capture stop'
---
.../cli/command_modules/network/_help.py | 29 +++++++++++++++++++
.../cli/command_modules/network/_params.py | 7 +++++
.../cli/command_modules/network/commands.py | 6 ++++
.../cli/command_modules/network/custom.py | 15 ++++++++++
4 files changed, 57 insertions(+)
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 dc9e6b30409..36bcc3970b9 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_help.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_help.py
@@ -5819,6 +5819,14 @@
text: az network vpn-connection list -g MyResourceGroup
"""
+helps['network vpn-connection list-ike-sas'] = """
+type: command
+short-summary: List IKE Security Associations for a VPN connection.
+examples:
+ - name: List IKE Security Associations for a VPN connection.
+ text: az network vpn-connection list-ike-sas -g MyResourceGroup -n MyConnection
+"""
+
helps['network vpn-connection shared-key'] = """
type: group
short-summary: Manage VPN shared keys.
@@ -5880,6 +5888,27 @@
crafted: true
"""
+helps['network vpn-connection packet-capture'] = """
+type: group
+short-summary: Manage packet capture on a VPN connection.
+"""
+
+helps['network vpn-connection packet-capture start'] = """
+type: command
+short-summary: Start packet capture on a VPN connection.
+examples:
+ - name: Start packet capture on a VPN connection.
+ text: az network vpn-connection packet-capture start -g MyResourceGroup -n MyConnection
+"""
+
+helps['network vpn-connection packet-capture stop'] = """
+type: command
+short-summary: Stop packet capture on a VPN connection.
+examples:
+ - name: Stop packet capture on a VPN connection.
+ text: az network vpn-connection packet-capture stop -g MyResourceGroup -n MyConnection --sas-url https://myStorageAct.blob.azure.com/artifacts?st=2019-04-10T22%3A12Z&se=2019-04-11T09%3A12Z&sp=rl&sv=2018-03-28&sr=c&sig=0000000000
+"""
+
helps['network vrouter'] = """
type: group
short-summary: Manage the virtual router. This feature supports both VirtualHub and VirtualRouter. Considering VirtualRouter is deprecated, we recommend to create VirtualRouter with --hosted-subnet instead
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 5db8fe572cb..b38d5256f45 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_params.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_params.py
@@ -1980,6 +1980,13 @@ def load_arguments(self, _):
c.argument('key_length', type=int, help='The virtual network connection reset shared key length, should between 1 and 128.')
c.argument('value', help='The virtual network connection shared key value.')
+ with self.argument_context('network vpn-connection packet-capture start') as c:
+ c.argument('filter_data', options_list=['--filter'], help='Data filter.')
+
+ with self.argument_context('network vpn-connection packet-capture stop') as c:
+ c.argument('sas_url', options_list=['--sas-url'],
+ help='The SAS url to be used for packet capture on VPN connection.')
+
with self.argument_context('network vrouter') as c:
c.argument('virtual_router_name', options_list=['--name', '-n'], help='The name of the Virtual Router.')
c.argument('hosted_gateway',
diff --git a/src/azure-cli/azure/cli/command_modules/network/commands.py b/src/azure-cli/azure/cli/command_modules/network/commands.py
index fc07b67cf95..9f9c0b3f516 100644
--- a/src/azure-cli/azure/cli/command_modules/network/commands.py
+++ b/src/azure-cli/azure/cli/command_modules/network/commands.py
@@ -1364,6 +1364,7 @@ def _make_singular(value):
g.show_command('show', 'get', transform=transform_vpn_connection)
g.command('list', 'list', transform=transform_vpn_connection_list)
g.generic_update_command('update', setter_name='begin_create_or_update', custom_func_name='update_vpn_connection')
+ g.command('list-ike-sas', 'begin_get_ike_sas')
with self.command_group('network vpn-connection shared-key', network_vpn_sdk) as g:
g.show_command('show', 'get_shared_key')
@@ -1377,6 +1378,11 @@ def _make_singular(value):
g.custom_command('add', 'add_vpn_conn_ipsec_policy', supports_no_wait=True, doc_string_source='IpsecPolicy')
g.custom_command('list', 'list_vpn_conn_ipsec_policies')
g.custom_command('clear', 'clear_vpn_conn_ipsec_policies', supports_no_wait=True)
+
+ with self.command_group('network vpn-connection packet-capture', network_vpn_sdk, min_api='2019-07-01') as g:
+ g.custom_command('start', 'start_vpn_conn_package_capture', supports_no_wait=True)
+ g.custom_command('stop', 'stop_vpn_conn_package_capture', supports_no_wait=True)
+
# endregion
# region VirtualRouter
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 57402343463..824f1000d6e 100644
--- a/src/azure-cli/azure/cli/command_modules/network/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/network/custom.py
@@ -6661,6 +6661,21 @@ def list_vpn_conn_ipsec_policies(cmd, resource_group_name, connection_name):
return ncf.get(resource_group_name, connection_name).ipsec_policies
+def start_vpn_conn_package_capture(cmd, resource_group_name, virtual_network_gateway_connection_name,
+ filter_data=None, no_wait=False):
+ VpnPacketCaptureStartParameters = cmd.get_models('VpnPacketCaptureStartParameters')
+ parameters = VpnPacketCaptureStartParameters(filter_data=filter_data)
+ ncf = network_client_factory(cmd.cli_ctx).virtual_network_gateway_connections
+ return sdk_no_wait(no_wait, ncf.begin_start_packet_capture, resource_group_name,
+ virtual_network_gateway_connection_name, parameters=parameters)
+
+def stop_vpn_conn_package_capture(cmd, resource_group_name, virtual_network_gateway_connection_name, sas_url, no_wait=False):
+ VpnPacketCaptureStopParameters = cmd.get_models('VpnPacketCaptureStopParameters')
+ parameters = VpnPacketCaptureStopParameters(sas_url=sas_url)
+ ncf = network_client_factory(cmd.cli_ctx).virtual_network_gateway_connections
+ return sdk_no_wait(no_wait, ncf.begin_stop_packet_capture, resource_group_name,
+ virtual_network_gateway_connection_name, parameters=parameters)
+
def assign_vnet_gateway_aad(cmd, resource_group_name, gateway_name,
aad_tenant, aad_audience, aad_issuer, no_wait=False):
ncf = network_client_factory(cmd.cli_ctx).virtual_network_gateways
From cdeb18984d169e29a761b8135eb3f5a6823c6adf Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Tue, 30 Mar 2021 15:51:00 +0800
Subject: [PATCH 13/19] add command 'az network vpn-connection
show-device-config-script'
---
.../cli/command_modules/network/_help.py | 8 +++
.../cli/command_modules/network/_params.py | 5 ++
.../cli/command_modules/network/commands.py | 7 +-
.../cli/command_modules/network/custom.py | 65 ++++++++++---------
4 files changed, 53 insertions(+), 32 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 36bcc3970b9..369178a9505 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_help.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_help.py
@@ -5888,6 +5888,14 @@
crafted: true
"""
+helps['network vpn-connection show-device-config-script'] = """
+type: command
+short-summary: Get a XML format representation for VPN connection device configuration script.
+examples:
+ - name: Get a XML format representation for VPN connection device configuration script.
+ text: az network vpn-connection show-device-config-script -g MyResourceGroup -n MyConnection --vendor "Cisco" --device-family "ISR" --firmware-version "IOS 15.1 (Preview)"
+"""
+
helps['network vpn-connection packet-capture'] = """
type: group
short-summary: Manage packet capture on a VPN connection.
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 b38d5256f45..495faed2123 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_params.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_params.py
@@ -1980,6 +1980,11 @@ def load_arguments(self, _):
c.argument('key_length', type=int, help='The virtual network connection reset shared key length, should between 1 and 128.')
c.argument('value', help='The virtual network connection shared key value.')
+ with self.argument_context('network vpn-connection show-device-config-script') as c:
+ c.argument('vendor', help='The vendor for the VPN device.')
+ c.argument('device_family', help='The device family for the vpn device.')
+ c.argument('firmware_version', help='The firmware version for the vpn device.')
+
with self.argument_context('network vpn-connection packet-capture start') as c:
c.argument('filter_data', options_list=['--filter'], help='Data filter.')
diff --git a/src/azure-cli/azure/cli/command_modules/network/commands.py b/src/azure-cli/azure/cli/command_modules/network/commands.py
index 9f9c0b3f516..f98b462fccf 100644
--- a/src/azure-cli/azure/cli/command_modules/network/commands.py
+++ b/src/azure-cli/azure/cli/command_modules/network/commands.py
@@ -1365,8 +1365,9 @@ def _make_singular(value):
g.command('list', 'list', transform=transform_vpn_connection_list)
g.generic_update_command('update', setter_name='begin_create_or_update', custom_func_name='update_vpn_connection')
g.command('list-ike-sas', 'begin_get_ike_sas')
+ g.custom_command('show-device-config-script', 'show_vpn_connection_device_config_script', client_factory=cf_virtual_network_gateways)
- with self.command_group('network vpn-connection shared-key', network_vpn_sdk) as g:
+ with self.command_group('network vpn-connection shared-key', network_vpn_sdk, client_factory=cf_virtual_network_gateway_connections) as g:
g.show_command('show', 'get_shared_key')
g.custom_command('reset', 'reset_shared_key')
g.generic_update_command('update',
@@ -1374,12 +1375,12 @@ def _make_singular(value):
custom_func_name='update_shared_key',
setter_name='begin_set_shared_key')
- with self.command_group('network vpn-connection ipsec-policy', network_vpn_sdk, min_api='2017-03-01') as g:
+ with self.command_group('network vpn-connection ipsec-policy', network_vpn_sdk, client_factory=cf_virtual_network_gateway_connections, min_api='2017-03-01') as g:
g.custom_command('add', 'add_vpn_conn_ipsec_policy', supports_no_wait=True, doc_string_source='IpsecPolicy')
g.custom_command('list', 'list_vpn_conn_ipsec_policies')
g.custom_command('clear', 'clear_vpn_conn_ipsec_policies', supports_no_wait=True)
- with self.command_group('network vpn-connection packet-capture', network_vpn_sdk, min_api='2019-07-01') as g:
+ with self.command_group('network vpn-connection packet-capture', network_vpn_sdk, client_factory=cf_virtual_network_gateway_connections, min_api='2019-07-01') as g:
g.custom_command('start', 'start_vpn_conn_package_capture', supports_no_wait=True)
g.custom_command('stop', 'stop_vpn_conn_package_capture', supports_no_wait=True)
diff --git a/src/azure-cli/azure/cli/command_modules/network/custom.py b/src/azure-cli/azure/cli/command_modules/network/custom.py
index 824f1000d6e..10dbe976c84 100644
--- a/src/azure-cli/azure/cli/command_modules/network/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/network/custom.py
@@ -6567,6 +6567,32 @@ def update_vpn_connection(cmd, instance, routing_weight=None, shared_key=None, t
gateway2_id['resource_group'], gateway2_id['name'])
return instance
+
+def start_vpn_conn_package_capture(cmd, client, resource_group_name, virtual_network_gateway_connection_name,
+ filter_data=None, no_wait=False):
+ VpnPacketCaptureStartParameters = cmd.get_models('VpnPacketCaptureStartParameters')
+ parameters = VpnPacketCaptureStartParameters(filter_data=filter_data)
+ return sdk_no_wait(no_wait, client.begin_start_packet_capture, resource_group_name,
+ virtual_network_gateway_connection_name, parameters=parameters)
+
+def stop_vpn_conn_package_capture(cmd, client, resource_group_name, virtual_network_gateway_connection_name,
+ sas_url, no_wait=False):
+ VpnPacketCaptureStopParameters = cmd.get_models('VpnPacketCaptureStopParameters')
+ parameters = VpnPacketCaptureStopParameters(sas_url=sas_url)
+ return sdk_no_wait(no_wait, client.begin_stop_packet_capture, resource_group_name,
+ virtual_network_gateway_connection_name, parameters=parameters)
+
+def show_vpn_connection_device_config_script(cmd, client, resource_group_name, virtual_network_gateway_connection_name,
+ vendor, device_family, firmware_version):
+ VpnDeviceScriptParameters = cmd.get_models('VpnDeviceScriptParameters')
+ parameters = VpnDeviceScriptParameters(
+ vendor=vendor,
+ device_family=device_family,
+ firmware_version=firmware_version
+ )
+ return client.vpn_device_configuration_script(resource_group_name, virtual_network_gateway_connection_name,
+ parameters=parameters)
+
# endregion
@@ -6620,7 +6646,7 @@ def list_vnet_gateway_ipsec_policies(cmd, resource_group_name, gateway_name):
raise CLIError('VPN client configuration must first be set through `az network vnet-gateway create/update`.')
-def add_vpn_conn_ipsec_policy(cmd, resource_group_name, connection_name,
+def add_vpn_conn_ipsec_policy(cmd, client, resource_group_name, connection_name,
sa_life_time_seconds, sa_data_size_kilobytes,
ipsec_encryption, ipsec_integrity,
ike_encryption, ike_integrity, dh_group, pfs_group, no_wait=False):
@@ -6634,47 +6660,29 @@ def add_vpn_conn_ipsec_policy(cmd, resource_group_name, connection_name,
dh_group=dh_group,
pfs_group=pfs_group)
- ncf = network_client_factory(cmd.cli_ctx).virtual_network_gateway_connections
- conn = ncf.get(resource_group_name, connection_name)
+ conn = client.get(resource_group_name, connection_name)
if conn.ipsec_policies:
conn.ipsec_policies.append(new_policy)
else:
conn.ipsec_policies = [new_policy]
- return sdk_no_wait(no_wait, ncf.begin_create_or_update, resource_group_name, connection_name, conn)
+ return sdk_no_wait(no_wait, client.begin_create_or_update, resource_group_name, connection_name, conn)
-def clear_vpn_conn_ipsec_policies(cmd, resource_group_name, connection_name, no_wait=False):
- ncf = network_client_factory(cmd.cli_ctx).virtual_network_gateway_connections
- conn = ncf.get(resource_group_name, connection_name)
+def clear_vpn_conn_ipsec_policies(cmd, client, resource_group_name, connection_name, no_wait=False):
+ conn = client.get(resource_group_name, connection_name)
conn.ipsec_policies = None
conn.use_policy_based_traffic_selectors = False
if no_wait:
- return sdk_no_wait(no_wait, ncf.begin_create_or_update, resource_group_name, connection_name, conn)
+ return sdk_no_wait(no_wait, client.begin_create_or_update, resource_group_name, connection_name, conn)
from azure.cli.core.commands import LongRunningOperation
- poller = sdk_no_wait(no_wait, ncf.begin_create_or_update, resource_group_name, connection_name, conn)
+ poller = sdk_no_wait(no_wait, client.begin_create_or_update, resource_group_name, connection_name, conn)
return LongRunningOperation(cmd.cli_ctx)(poller).ipsec_policies
-def list_vpn_conn_ipsec_policies(cmd, resource_group_name, connection_name):
- ncf = network_client_factory(cmd.cli_ctx).virtual_network_gateway_connections
- return ncf.get(resource_group_name, connection_name).ipsec_policies
-
+def list_vpn_conn_ipsec_policies(cmd, client, resource_group_name, connection_name):
+ return client.get(resource_group_name, connection_name).ipsec_policies
-def start_vpn_conn_package_capture(cmd, resource_group_name, virtual_network_gateway_connection_name,
- filter_data=None, no_wait=False):
- VpnPacketCaptureStartParameters = cmd.get_models('VpnPacketCaptureStartParameters')
- parameters = VpnPacketCaptureStartParameters(filter_data=filter_data)
- ncf = network_client_factory(cmd.cli_ctx).virtual_network_gateway_connections
- return sdk_no_wait(no_wait, ncf.begin_start_packet_capture, resource_group_name,
- virtual_network_gateway_connection_name, parameters=parameters)
-
-def stop_vpn_conn_package_capture(cmd, resource_group_name, virtual_network_gateway_connection_name, sas_url, no_wait=False):
- VpnPacketCaptureStopParameters = cmd.get_models('VpnPacketCaptureStopParameters')
- parameters = VpnPacketCaptureStopParameters(sas_url=sas_url)
- ncf = network_client_factory(cmd.cli_ctx).virtual_network_gateway_connections
- return sdk_no_wait(no_wait, ncf.begin_stop_packet_capture, resource_group_name,
- virtual_network_gateway_connection_name, parameters=parameters)
def assign_vnet_gateway_aad(cmd, resource_group_name, gateway_name,
aad_tenant, aad_audience, aad_issuer, no_wait=False):
@@ -7203,10 +7211,9 @@ def list_security_partner_provider(cmd, resource_group_name=None):
# region network gateway connection
-def reset_shared_key(cmd, virtual_network_gateway_connection_name, key_length, resource_group_name=None):
+def reset_shared_key(cmd, client, virtual_network_gateway_connection_name, key_length, resource_group_name=None):
ConnectionResetSharedKey = cmd.get_models('ConnectionResetSharedKey')
shared_key = ConnectionResetSharedKey(key_length=key_length)
- client = network_client_factory(cmd.cli_ctx).virtual_network_gateway_connections
return client.begin_reset_shared_key(resource_group_name=resource_group_name,
virtual_network_gateway_connection_name=virtual_network_gateway_connection_name, # pylint: disable=line-too-long
parameters=shared_key)
From 8c948b68cd30e9be9e394f308e72458cdd2fcfcc Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Thu, 1 Apr 2021 17:20:16 +0800
Subject: [PATCH 14/19] add command 'az network vnet-gateway
show-supported-devices'
---
.../azure/cli/command_modules/network/_help.py | 10 +++++++++-
.../azure/cli/command_modules/network/commands.py | 7 ++++---
.../network/tests/latest/test_network_commands.py | 1 +
3 files changed, 14 insertions(+), 4 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 369178a9505..e1f752b9b58 100644
--- a/src/azure-cli/azure/cli/command_modules/network/_help.py
+++ b/src/azure-cli/azure/cli/command_modules/network/_help.py
@@ -5566,6 +5566,14 @@
text: az network vnet-gateway list-learned-routes -g MyResourceGroup -n MyVnetGateway
"""
+helps['network vnet-gateway show-supported-devices'] = """
+type: command
+short-summary: Get a xml format representation for supported vpn devices.
+examples:
+ - name: Get a xml format representation for supported vpn devices.
+ text: az network vnet-gateway show-supported-devices -g MyResourceGroup -n MyVnetGateway
+"""
+
helps['network vnet-gateway reset'] = """
type: command
short-summary: Reset a virtual network gateway.
@@ -5893,7 +5901,7 @@
short-summary: Get a XML format representation for VPN connection device configuration script.
examples:
- name: Get a XML format representation for VPN connection device configuration script.
- text: az network vpn-connection show-device-config-script -g MyResourceGroup -n MyConnection --vendor "Cisco" --device-family "ISR" --firmware-version "IOS 15.1 (Preview)"
+ text: az network vpn-connection show-device-config-script -g MyResourceGroup -n MyConnection --vendor "Cisco" --device-family "Cisco-ISR(IOS)" --firmware-version "Cisco-ISR-15.x--IKEv2+BGP"
"""
helps['network vpn-connection packet-capture'] = """
diff --git a/src/azure-cli/azure/cli/command_modules/network/commands.py b/src/azure-cli/azure/cli/command_modules/network/commands.py
index f98b462fccf..3c1ef3c6f8c 100644
--- a/src/azure-cli/azure/cli/command_modules/network/commands.py
+++ b/src/azure-cli/azure/cli/command_modules/network/commands.py
@@ -1333,6 +1333,7 @@ def _make_singular(value):
g.command('list-bgp-peer-status', 'begin_get_bgp_peer_status', table_transformer=transform_vnet_gateway_bgp_peer_table)
g.command('list-advertised-routes', 'begin_get_advertised_routes', table_transformer=transform_vnet_gateway_routes_table)
g.command('list-learned-routes', 'begin_get_learned_routes', table_transformer=transform_vnet_gateway_routes_table)
+ g.command('show-supported-devices', 'supported_vpn_devices', is_preview=True, min_api='2017-09-01')
with self.command_group('network vnet-gateway vpn-client', network_vgw_sdk, client_factory=cf_virtual_network_gateways) as g:
g.custom_command('generate', 'generate_vpn_client')
@@ -1364,8 +1365,8 @@ def _make_singular(value):
g.show_command('show', 'get', transform=transform_vpn_connection)
g.command('list', 'list', transform=transform_vpn_connection_list)
g.generic_update_command('update', setter_name='begin_create_or_update', custom_func_name='update_vpn_connection')
- g.command('list-ike-sas', 'begin_get_ike_sas')
- g.custom_command('show-device-config-script', 'show_vpn_connection_device_config_script', client_factory=cf_virtual_network_gateways)
+ g.command('list-ike-sas', 'begin_get_ike_sas', is_preview=True)
+ g.custom_command('show-device-config-script', 'show_vpn_connection_device_config_script', client_factory=cf_virtual_network_gateways, is_preview=True)
with self.command_group('network vpn-connection shared-key', network_vpn_sdk, client_factory=cf_virtual_network_gateway_connections) as g:
g.show_command('show', 'get_shared_key')
@@ -1380,7 +1381,7 @@ def _make_singular(value):
g.custom_command('list', 'list_vpn_conn_ipsec_policies')
g.custom_command('clear', 'clear_vpn_conn_ipsec_policies', supports_no_wait=True)
- with self.command_group('network vpn-connection packet-capture', network_vpn_sdk, client_factory=cf_virtual_network_gateway_connections, min_api='2019-07-01') as g:
+ with self.command_group('network vpn-connection packet-capture', network_vpn_sdk, client_factory=cf_virtual_network_gateway_connections, is_preview=True, min_api='2019-07-01') as g:
g.custom_command('start', 'start_vpn_conn_package_capture', supports_no_wait=True)
g.custom_command('stop', 'stop_vpn_conn_package_capture', supports_no_wait=True)
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 43c6ad0b57b..5fd48703cb6 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
@@ -3591,6 +3591,7 @@ def test_network_vnet_gateway_ipsec(self, resource_group):
self.cmd('network vnet-gateway ipsec-policy list -g {rg} --gateway-name {gw}')
self.cmd('network vnet-gateway ipsec-policy clear -g {rg} --gateway-name {gw}')
self.cmd('network vnet-gateway ipsec-policy list -g {rg} --gateway-name {gw}')
+ self.cmd('network vnet-gateway show-supported-devices -g {rg} -n {gw} -o tsv')
class NetworkVnetGatewayMultiAuth(ScenarioTest):
From b32c3180a35a6cc00ce1030b42f5819d183f186d Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Mon, 12 Apr 2021 16:47:12 +0800
Subject: [PATCH 15/19] fix linter issues
---
src/azure-cli/azure/cli/command_modules/network/custom.py | 3 +++
1 file changed, 3 insertions(+)
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 10dbe976c84..e093dc2f333 100644
--- a/src/azure-cli/azure/cli/command_modules/network/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/network/custom.py
@@ -6568,6 +6568,7 @@ def update_vpn_connection(cmd, instance, routing_weight=None, shared_key=None, t
return instance
+
def start_vpn_conn_package_capture(cmd, client, resource_group_name, virtual_network_gateway_connection_name,
filter_data=None, no_wait=False):
VpnPacketCaptureStartParameters = cmd.get_models('VpnPacketCaptureStartParameters')
@@ -6575,6 +6576,7 @@ def start_vpn_conn_package_capture(cmd, client, resource_group_name, virtual_net
return sdk_no_wait(no_wait, client.begin_start_packet_capture, resource_group_name,
virtual_network_gateway_connection_name, parameters=parameters)
+
def stop_vpn_conn_package_capture(cmd, client, resource_group_name, virtual_network_gateway_connection_name,
sas_url, no_wait=False):
VpnPacketCaptureStopParameters = cmd.get_models('VpnPacketCaptureStopParameters')
@@ -6582,6 +6584,7 @@ def stop_vpn_conn_package_capture(cmd, client, resource_group_name, virtual_netw
return sdk_no_wait(no_wait, client.begin_stop_packet_capture, resource_group_name,
virtual_network_gateway_connection_name, parameters=parameters)
+
def show_vpn_connection_device_config_script(cmd, client, resource_group_name, virtual_network_gateway_connection_name,
vendor, device_family, firmware_version):
VpnDeviceScriptParameters = cmd.get_models('VpnDeviceScriptParameters')
From d3c1d1f7d69a7b45174aeca9c3241c62e56eac6e Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Mon, 12 Apr 2021 17:17:23 +0800
Subject: [PATCH 16/19] update recordings
---
.../test_network_vnet_gateway_ipsec.yaml | 566 +++++++++++-------
1 file changed, 346 insertions(+), 220 deletions(-)
diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet_gateway_ipsec.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet_gateway_ipsec.yaml
index 9242b2365fb..a6d82830b24 100644
--- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet_gateway_ipsec.yaml
+++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet_gateway_ipsec.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n --subnet-name
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnet_gateway_ipsec000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001","name":"cli_test_vnet_gateway_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T08:07:58Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001","name":"cli_test_vnet_gateway_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T08:52:30Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:00 GMT
+ - Mon, 12 Apr 2021 08:52:38 GMT
expires:
- '-1'
pragma:
@@ -64,21 +64,21 @@ interactions:
ParameterSetName:
- -g -n --subnet-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"ddbfd4f7-f0f6-4a1a-aa2b-3dcaca601ff7\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"82324d42-c3a3-478f-bab5-90977800020e\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"4a118cbe-f474-4c30-9488-ae06946dcb8f\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"e99e18c1-d688-4712-938b-67faba6e787b\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"ddbfd4f7-f0f6-4a1a-aa2b-3dcaca601ff7\\\"\",\r\n
+ \ \"etag\": \"W/\\\"82324d42-c3a3-478f-bab5-90977800020e\\\"\",\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\":
@@ -89,7 +89,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/52bc95ab-3afc-45f7-b23e-283e9378e923?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4875d1db-aac5-41d9-8fc3-af57aa4dc3e7?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -97,7 +97,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:05 GMT
+ - Mon, 12 Apr 2021 08:52:44 GMT
expires:
- '-1'
pragma:
@@ -110,9 +110,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6babf0b3-2113-421c-853c-b9953d3ce8ed
+ - 61e16fd9-32c9-4a4e-9d55-a0c750da4903
x-ms-ratelimit-remaining-subscription-writes:
- - '1183'
+ - '1199'
status:
code: 201
message: Created
@@ -130,9 +130,9 @@ interactions:
ParameterSetName:
- -g -n --subnet-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/52bc95ab-3afc-45f7-b23e-283e9378e923?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4875d1db-aac5-41d9-8fc3-af57aa4dc3e7?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -144,7 +144,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:09 GMT
+ - Mon, 12 Apr 2021 08:52:48 GMT
expires:
- '-1'
pragma:
@@ -161,7 +161,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 4330e61a-aa42-447a-b7da-e751877e68f6
+ - aeeba739-e49b-427e-b1ab-fe8ec12f90a6
status:
code: 200
message: OK
@@ -179,21 +179,21 @@ interactions:
ParameterSetName:
- -g -n --subnet-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"050ee222-06a1-4f17-9af8-2b3b9c8d9574\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"40de08c9-34ac-4b35-a3c2-f48b8baef0c7\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"4a118cbe-f474-4c30-9488-ae06946dcb8f\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"e99e18c1-d688-4712-938b-67faba6e787b\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"050ee222-06a1-4f17-9af8-2b3b9c8d9574\\\"\",\r\n
+ \ \"etag\": \"W/\\\"40de08c9-34ac-4b35-a3c2-f48b8baef0c7\\\"\",\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\":
@@ -208,9 +208,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:10 GMT
+ - Mon, 12 Apr 2021 08:52:48 GMT
etag:
- - W/"050ee222-06a1-4f17-9af8-2b3b9c8d9574"
+ - W/"40de08c9-34ac-4b35-a3c2-f48b8baef0c7"
expires:
- '-1'
pragma:
@@ -227,7 +227,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5cf0a477-71c8-4aef-bab2-050e8ff78277
+ - e62e8d2e-d681-40d4-8c13-8f2dd6d59572
status:
code: 200
message: OK
@@ -245,15 +245,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnet_gateway_ipsec000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001","name":"cli_test_vnet_gateway_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T08:07:58Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001","name":"cli_test_vnet_gateway_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T08:52:30Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -262,7 +262,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:10 GMT
+ - Mon, 12 Apr 2021 08:52:48 GMT
expires:
- '-1'
pragma:
@@ -295,15 +295,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\r\n
- \ \"etag\": \"W/\\\"099ef5e8-1b21-44b4-b1ae-d3b78a788410\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"7efa44c9-9f47-46af-b2ed-8f6cf64f510c\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"68a72a10-48cf-4bc4-bbcc-4d72dd03a5ba\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"7b53a44f-eed6-468a-a0ef-afec17eef5ec\",\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
@@ -312,7 +312,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/02f72b52-194f-4053-9d2c-d83ec2a3f3c6?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a5f141bb-d54c-4745-ae88-bf185f240cd3?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -320,7 +320,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:16 GMT
+ - Mon, 12 Apr 2021 08:52:54 GMT
expires:
- '-1'
pragma:
@@ -333,9 +333,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 25d0d9fd-80c8-4bf5-86c6-875b38041429
+ - 8f54cec3-9446-4799-a18e-42c9755d475b
x-ms-ratelimit-remaining-subscription-writes:
- - '1188'
+ - '1199'
status:
code: 201
message: Created
@@ -353,9 +353,9 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/02f72b52-194f-4053-9d2c-d83ec2a3f3c6?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a5f141bb-d54c-4745-ae88-bf185f240cd3?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -367,7 +367,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:17 GMT
+ - Mon, 12 Apr 2021 08:52:56 GMT
expires:
- '-1'
pragma:
@@ -384,7 +384,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b93e9995-1b04-44ac-a41b-fcc98a1d3650
+ - c547f9e0-3ad7-4708-8da5-f2e028636473
status:
code: 200
message: OK
@@ -402,15 +402,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\r\n
- \ \"etag\": \"W/\\\"c9d0a10a-9614-4e99-85d0-360cefc0e2f6\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"336fcf39-d389-4f34-830c-818de450ee8f\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"68a72a10-48cf-4bc4-bbcc-4d72dd03a5ba\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"7b53a44f-eed6-468a-a0ef-afec17eef5ec\",\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
@@ -423,9 +423,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:17 GMT
+ - Mon, 12 Apr 2021 08:52:56 GMT
etag:
- - W/"c9d0a10a-9614-4e99-85d0-360cefc0e2f6"
+ - W/"336fcf39-d389-4f34-830c-818de450ee8f"
expires:
- '-1'
pragma:
@@ -442,7 +442,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9b0671b2-b923-4229-923f-10fd59f134c9
+ - 66a6bc2a-3ba9-4950-b553-a20ffdfd6d9e
status:
code: 200
message: OK
@@ -461,15 +461,15 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnet_gateway_ipsec000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001","name":"cli_test_vnet_gateway_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T08:07:58Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001","name":"cli_test_vnet_gateway_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T08:52:30Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -478,7 +478,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:18 GMT
+ - Mon, 12 Apr 2021 08:52:57 GMT
expires:
- '-1'
pragma:
@@ -517,20 +517,20 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"e64313c5-c4d1-452c-bce4-d8f31be3dab0\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"a94a61f1-38bd-4048-8379-0a09292ba431\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"c995e4c8-f5db-411a-8140-d56497cb86f0\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"e64313c5-c4d1-452c-bce4-d8f31be3dab0\\\"\",\r\n
+ \ \"etag\": \"W/\\\"a94a61f1-38bd-4048-8379-0a09292ba431\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -557,7 +557,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -565,7 +565,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:24 GMT
+ - Mon, 12 Apr 2021 08:53:03 GMT
expires:
- '-1'
pragma:
@@ -578,9 +578,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f5fdfc0f-0d2a-4faa-9f52-1ce67cd6007c
+ - f3c51706-cede-40d9-bdc4-33df744eced8
x-ms-ratelimit-remaining-subscription-writes:
- - '1181'
+ - '1199'
status:
code: 201
message: Created
@@ -599,9 +599,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -613,7 +613,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:35 GMT
+ - Mon, 12 Apr 2021 08:53:14 GMT
expires:
- '-1'
pragma:
@@ -630,7 +630,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b2290a5a-34d1-47cc-aeab-3fd158ba1210
+ - d86bc029-7c14-4e5c-a7a4-3c8e83df43ec
status:
code: 200
message: OK
@@ -649,9 +649,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -663,7 +663,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:08:45 GMT
+ - Mon, 12 Apr 2021 08:53:24 GMT
expires:
- '-1'
pragma:
@@ -680,7 +680,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e32b0d5a-15b6-4167-8769-66106f61029d
+ - 57419ce8-e81e-440b-af74-734a26f88020
status:
code: 200
message: OK
@@ -699,9 +699,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -713,7 +713,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:09:05 GMT
+ - Mon, 12 Apr 2021 08:53:44 GMT
expires:
- '-1'
pragma:
@@ -730,7 +730,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6ddccae2-ec03-4a2a-84c6-d799fea690f9
+ - 51da2452-afe5-418b-8f72-8f01b0a24a76
status:
code: 200
message: OK
@@ -749,9 +749,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -763,7 +763,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:09:26 GMT
+ - Mon, 12 Apr 2021 08:54:04 GMT
expires:
- '-1'
pragma:
@@ -780,7 +780,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - ba15afb2-8c3d-4073-adca-8f26375129c0
+ - 063ea588-2d1a-4efd-97fb-8922cd5709cc
status:
code: 200
message: OK
@@ -799,9 +799,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -813,7 +813,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:10:06 GMT
+ - Mon, 12 Apr 2021 08:54:45 GMT
expires:
- '-1'
pragma:
@@ -830,7 +830,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 19fbe261-f960-4a40-b393-e25f5b9b87db
+ - 7c0e9517-a56e-4248-8655-cbdcfb35449f
status:
code: 200
message: OK
@@ -849,9 +849,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -863,7 +863,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:10:47 GMT
+ - Mon, 12 Apr 2021 08:55:25 GMT
expires:
- '-1'
pragma:
@@ -880,7 +880,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 25d40313-dfab-4d27-86a7-3ae28da9e9a4
+ - 1af5bd1b-919d-41d2-8fa2-91e4168986ec
status:
code: 200
message: OK
@@ -899,9 +899,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -913,7 +913,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:12:07 GMT
+ - Mon, 12 Apr 2021 08:56:46 GMT
expires:
- '-1'
pragma:
@@ -930,7 +930,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 052f09f3-7840-497b-ba3c-3a328bc58d33
+ - 3fa583e4-9432-4e5a-aefe-f8fbba7906d8
status:
code: 200
message: OK
@@ -949,9 +949,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -963,7 +963,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:14:48 GMT
+ - Mon, 12 Apr 2021 08:59:26 GMT
expires:
- '-1'
pragma:
@@ -980,7 +980,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 3d314316-e20a-4481-9a95-9a06c7cdfbe9
+ - b5b5b941-5b41-4f2d-8d35-50e22701e8fb
status:
code: 200
message: OK
@@ -999,9 +999,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1013,7 +1013,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:16:29 GMT
+ - Mon, 12 Apr 2021 09:01:06 GMT
expires:
- '-1'
pragma:
@@ -1030,7 +1030,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 691d38f6-215d-44ad-9e2a-7b60668dbcb6
+ - 51623c82-04c5-4d5d-9c33-4f10424493da
status:
code: 200
message: OK
@@ -1049,9 +1049,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1063,7 +1063,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:18:09 GMT
+ - Mon, 12 Apr 2021 09:02:47 GMT
expires:
- '-1'
pragma:
@@ -1080,7 +1080,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6b23ffbe-b417-47ff-914f-4b25b99228dd
+ - e7828dc8-ea60-4c13-9286-9b4bf3b13342
status:
code: 200
message: OK
@@ -1099,9 +1099,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1113,7 +1113,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:19:50 GMT
+ - Mon, 12 Apr 2021 09:04:27 GMT
expires:
- '-1'
pragma:
@@ -1130,7 +1130,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 72201ea1-835b-4abc-b7e1-a89adb855831
+ - 6ecde3a1-3ff7-41c6-a068-54d80bae50c7
status:
code: 200
message: OK
@@ -1149,9 +1149,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1163,7 +1163,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:21:33 GMT
+ - Mon, 12 Apr 2021 09:06:08 GMT
expires:
- '-1'
pragma:
@@ -1180,7 +1180,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 584f5952-e423-4bc1-b894-9715445e40f1
+ - 206a4e9d-269d-4da6-b1fc-3db3fad29cb9
status:
code: 200
message: OK
@@ -1199,9 +1199,9 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1213,7 +1213,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:23:13 GMT
+ - Mon, 12 Apr 2021 09:07:48 GMT
expires:
- '-1'
pragma:
@@ -1230,7 +1230,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 43e2d018-2725-47e3-a76e-d80fb34ee2c1
+ - 26b902cd-eb75-4dee-bbbd-be7aac2d2f97
status:
code: 200
message: OK
@@ -1249,9 +1249,59 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c379294-7d0f-4bae-a375-6bd4e11c1441?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 12 Apr 2021 09:09: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:
+ - cdd54586-721d-4715-8cd7-80f5e6f93974
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6eeeef9-794d-45b8-8ed6-21649e2029dd?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -1263,7 +1313,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:24:54 GMT
+ - Mon, 12 Apr 2021 09:11:08 GMT
expires:
- '-1'
pragma:
@@ -1280,7 +1330,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 18c8e6bd-61f8-4cd2-9a53-0981277b668e
+ - c29f77f3-d94e-434e-826c-43fd12739aef
status:
code: 200
message: OK
@@ -1299,20 +1349,20 @@ interactions:
- -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
--client-protocol --radius-secret --radius-server
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"8bad1e22-5d73-4577-bcc7-6c8afb605892\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"e27608cd-1e83-40ae-8604-108d83d60289\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"c995e4c8-f5db-411a-8140-d56497cb86f0\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bad1e22-5d73-4577-bcc7-6c8afb605892\\\"\",\r\n
+ \ \"etag\": \"W/\\\"e27608cd-1e83-40ae-8604-108d83d60289\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1337,17 +1387,17 @@ interactions:
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"104.40.11.224\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3374'
+ - '3375'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:24:56 GMT
+ - Mon, 12 Apr 2021 09:11:09 GMT
expires:
- '-1'
pragma:
@@ -1364,7 +1414,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - bfc73f3e-34dc-4e4c-aa45-2843cc6f3939
+ - b726dd34-1473-4fac-ac14-1b23a550bff7
status:
code: 200
message: OK
@@ -1383,20 +1433,20 @@ interactions:
- -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"8bad1e22-5d73-4577-bcc7-6c8afb605892\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"e27608cd-1e83-40ae-8604-108d83d60289\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"c995e4c8-f5db-411a-8140-d56497cb86f0\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"8bad1e22-5d73-4577-bcc7-6c8afb605892\\\"\",\r\n
+ \ \"etag\": \"W/\\\"e27608cd-1e83-40ae-8604-108d83d60289\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1421,17 +1471,17 @@ interactions:
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"104.40.11.224\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3374'
+ - '3375'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:24:57 GMT
+ - Mon, 12 Apr 2021 09:11:11 GMT
expires:
- '-1'
pragma:
@@ -1448,7 +1498,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 05ded714-d022-4444-85cb-8e89e86d3318
+ - 98b5031a-7521-4644-9fb5-70600c3317f4
status:
code: 200
message: OK
@@ -1487,20 +1537,20 @@ interactions:
- -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"ea6c77f8-7d3e-4b54-b521-8cdffb1e5a18\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"242498d6-461e-4e67-b279-f56459cfebd2\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"c995e4c8-f5db-411a-8140-d56497cb86f0\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ea6c77f8-7d3e-4b54-b521-8cdffb1e5a18\\\"\",\r\n
+ \ \"etag\": \"W/\\\"242498d6-461e-4e67-b279-f56459cfebd2\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1527,19 +1577,19 @@ interactions:
[\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"104.40.11.224\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fc2c0bd2-54de-4a83-aaaf-f37c03f3f7fa?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/754077fb-a776-448f-a6ea-b4970312a017?api-version=2020-11-01
cache-control:
- no-cache
content-length:
- - '3531'
+ - '3532'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:25:01 GMT
+ - Mon, 12 Apr 2021 09:11:14 GMT
expires:
- '-1'
pragma:
@@ -1556,9 +1606,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - fcb496c4-4edc-4801-8cc4-ed31e0b96242
+ - 5615d879-b106-4da7-bc78-c6803152c0dc
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
status:
code: 200
message: OK
@@ -1577,9 +1627,9 @@ interactions:
- -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fc2c0bd2-54de-4a83-aaaf-f37c03f3f7fa?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/754077fb-a776-448f-a6ea-b4970312a017?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1591,7 +1641,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:25:11 GMT
+ - Mon, 12 Apr 2021 09:11:24 GMT
expires:
- '-1'
pragma:
@@ -1608,7 +1658,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b0fe0e6b-8168-4406-8a6b-4efc2afdebce
+ - 41166b0c-3103-4547-864b-3718b6dc68bb
status:
code: 200
message: OK
@@ -1627,9 +1677,9 @@ interactions:
- -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fc2c0bd2-54de-4a83-aaaf-f37c03f3f7fa?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/754077fb-a776-448f-a6ea-b4970312a017?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1641,7 +1691,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:25:31 GMT
+ - Mon, 12 Apr 2021 09:11:45 GMT
expires:
- '-1'
pragma:
@@ -1658,7 +1708,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c0e141ff-64fb-4cbd-a8ad-aa06270c01e9
+ - 9041c4f6-df12-4cd8-8755-b01d393ac32e
status:
code: 200
message: OK
@@ -1677,9 +1727,9 @@ interactions:
- -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fc2c0bd2-54de-4a83-aaaf-f37c03f3f7fa?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/754077fb-a776-448f-a6ea-b4970312a017?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -1691,7 +1741,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:26:11 GMT
+ - Mon, 12 Apr 2021 09:12:25 GMT
expires:
- '-1'
pragma:
@@ -1708,7 +1758,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1a4ea308-d00f-471d-aee2-3b180c65c06d
+ - b80b3e38-13ff-4839-9bde-b182dfa68dac
status:
code: 200
message: OK
@@ -1727,9 +1777,9 @@ interactions:
- -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fc2c0bd2-54de-4a83-aaaf-f37c03f3f7fa?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/754077fb-a776-448f-a6ea-b4970312a017?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -1741,7 +1791,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:27:32 GMT
+ - Mon, 12 Apr 2021 09:13:45 GMT
expires:
- '-1'
pragma:
@@ -1758,7 +1808,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 34830510-9089-468a-bba1-19d4d01ef2b9
+ - 6b7eb45f-a8a2-4278-b672-98049cde47dc
status:
code: 200
message: OK
@@ -1777,20 +1827,20 @@ interactions:
- -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
--ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"cb5f0799-d76d-4bec-af70-87e8be025b45\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"003f2e77-8d9b-463d-81a6-b451428b431e\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"c995e4c8-f5db-411a-8140-d56497cb86f0\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"cb5f0799-d76d-4bec-af70-87e8be025b45\\\"\",\r\n
+ \ \"etag\": \"W/\\\"003f2e77-8d9b-463d-81a6-b451428b431e\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1819,17 +1869,17 @@ interactions:
[\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"104.40.11.224\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3708'
+ - '3709'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:27:33 GMT
+ - Mon, 12 Apr 2021 09:13:46 GMT
expires:
- '-1'
pragma:
@@ -1846,7 +1896,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 21fe4379-726d-460d-acf9-74285ef72b3b
+ - 15c9d280-55e6-4c07-96d4-e1ed8d3c4a7d
status:
code: 200
message: OK
@@ -1864,20 +1914,20 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"cb5f0799-d76d-4bec-af70-87e8be025b45\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"003f2e77-8d9b-463d-81a6-b451428b431e\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"c995e4c8-f5db-411a-8140-d56497cb86f0\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"cb5f0799-d76d-4bec-af70-87e8be025b45\\\"\",\r\n
+ \ \"etag\": \"W/\\\"003f2e77-8d9b-463d-81a6-b451428b431e\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1906,17 +1956,17 @@ interactions:
[\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"104.40.11.224\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3708'
+ - '3709'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:27:34 GMT
+ - Mon, 12 Apr 2021 09:13:48 GMT
expires:
- '-1'
pragma:
@@ -1933,7 +1983,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a52a5bdd-56e9-470f-aaac-ef60c208a833
+ - 4a626089-7266-4e95-a1fe-0aaaec61a45a
status:
code: 200
message: OK
@@ -1951,20 +2001,20 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"cb5f0799-d76d-4bec-af70-87e8be025b45\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"003f2e77-8d9b-463d-81a6-b451428b431e\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"c995e4c8-f5db-411a-8140-d56497cb86f0\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"cb5f0799-d76d-4bec-af70-87e8be025b45\\\"\",\r\n
+ \ \"etag\": \"W/\\\"003f2e77-8d9b-463d-81a6-b451428b431e\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1993,17 +2043,17 @@ interactions:
[\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"104.40.11.224\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3708'
+ - '3709'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:27:36 GMT
+ - Mon, 12 Apr 2021 09:13:49 GMT
expires:
- '-1'
pragma:
@@ -2020,7 +2070,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9c6ee9c3-73da-4616-9f19-4be9fa405630
+ - 4ae14e16-26b3-455b-b121-c340d9de330b
status:
code: 200
message: OK
@@ -2055,20 +2105,20 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"2c2076f4-c1a1-4799-9151-a07a6bb4515c\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7bfb9385-0e31-40c7-9648-cc0b71866c31\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"c995e4c8-f5db-411a-8140-d56497cb86f0\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"2c2076f4-c1a1-4799-9151-a07a6bb4515c\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7bfb9385-0e31-40c7-9648-cc0b71866c31\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2091,19 +2141,19 @@ interactions:
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"104.40.11.224\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/60af378e-c5c1-4a62-9ac4-9133bc06f2d8?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/16252557-1843-4a5e-8c5c-19ae35521776?api-version=2020-11-01
cache-control:
- no-cache
content-length:
- - '3197'
+ - '3198'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:27:39 GMT
+ - Mon, 12 Apr 2021 09:13:51 GMT
expires:
- '-1'
pragma:
@@ -2120,9 +2170,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 77f5c031-daa5-4cd2-8891-ae5abcc58a1c
+ - cc9e61a7-b9ab-43a9-8422-08243200cfbc
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1198'
status:
code: 200
message: OK
@@ -2140,9 +2190,9 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/60af378e-c5c1-4a62-9ac4-9133bc06f2d8?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/16252557-1843-4a5e-8c5c-19ae35521776?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2154,7 +2204,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:27:49 GMT
+ - Mon, 12 Apr 2021 09:14:02 GMT
expires:
- '-1'
pragma:
@@ -2171,7 +2221,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 523827f2-77d4-4500-9608-c14e1dc0aaf5
+ - a01b2e93-66a2-44ff-aa15-d005bb38ca86
status:
code: 200
message: OK
@@ -2189,9 +2239,9 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/60af378e-c5c1-4a62-9ac4-9133bc06f2d8?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/16252557-1843-4a5e-8c5c-19ae35521776?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2203,7 +2253,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:28:09 GMT
+ - Mon, 12 Apr 2021 09:14:22 GMT
expires:
- '-1'
pragma:
@@ -2220,7 +2270,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - dce39980-af61-44b5-9089-0bad37f427de
+ - 58bc2ca9-a5e2-4b20-83b1-428d2e8afcb3
status:
code: 200
message: OK
@@ -2238,9 +2288,9 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/60af378e-c5c1-4a62-9ac4-9133bc06f2d8?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/16252557-1843-4a5e-8c5c-19ae35521776?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"InProgress\"\r\n}"
@@ -2252,7 +2302,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:28:49 GMT
+ - Mon, 12 Apr 2021 09:15:03 GMT
expires:
- '-1'
pragma:
@@ -2269,7 +2319,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 32b762b0-7241-4368-9687-4a882fdc4fea
+ - 973e0896-5d23-496e-a7be-3c50a641afce
status:
code: 200
message: OK
@@ -2287,9 +2337,9 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/60af378e-c5c1-4a62-9ac4-9133bc06f2d8?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/16252557-1843-4a5e-8c5c-19ae35521776?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -2301,7 +2351,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:30:10 GMT
+ - Mon, 12 Apr 2021 09:16:23 GMT
expires:
- '-1'
pragma:
@@ -2318,7 +2368,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e54d3342-6ff3-47d6-a2e0-c6748d49ca52
+ - 38625c06-ba4f-4fa7-a45c-eea1773ddc4b
status:
code: 200
message: OK
@@ -2336,20 +2386,20 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"b1aa204d-d615-4d97-8bb4-ca82d990b8ad\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"a1f00716-6adc-4e80-8f1f-a73b71c0d2a0\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"c995e4c8-f5db-411a-8140-d56497cb86f0\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"b1aa204d-d615-4d97-8bb4-ca82d990b8ad\\\"\",\r\n
+ \ \"etag\": \"W/\\\"a1f00716-6adc-4e80-8f1f-a73b71c0d2a0\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2374,17 +2424,17 @@ interactions:
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"104.40.11.224\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3374'
+ - '3375'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:30:12 GMT
+ - Mon, 12 Apr 2021 09:16:23 GMT
expires:
- '-1'
pragma:
@@ -2401,7 +2451,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - bf340938-2129-499b-aa8d-c6d308ef4288
+ - 20ec223d-cd8a-44c9-ae1b-ffa5c52fa4a4
status:
code: 200
message: OK
@@ -2419,20 +2469,20 @@ interactions:
ParameterSetName:
- -g --gateway-name
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
- \ \"etag\": \"W/\\\"b1aa204d-d615-4d97-8bb4-ca82d990b8ad\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"a1f00716-6adc-4e80-8f1f-a73b71c0d2a0\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"a8fb50f2-140d-4a13-96dc-5394ca8f6cbe\",\r\n \"packetCaptureDiagnosticState\":
+ \"c995e4c8-f5db-411a-8140-d56497cb86f0\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"b1aa204d-d615-4d97-8bb4-ca82d990b8ad\\\"\",\r\n
+ \ \"etag\": \"W/\\\"a1f00716-6adc-4e80-8f1f-a73b71c0d2a0\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2457,17 +2507,91 @@ interactions:
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
\ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
\ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"104.42.55.30\"\r\n ]\r\n }\r\n ]\r\n
+ [\r\n \"104.40.11.224\"\r\n ]\r\n }\r\n ]\r\n
\ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3374'
+ - '3375'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 12 Apr 2021 09:16:25 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:
+ - e19d85ac-cb3a-45d0-aef9-d7b7a61f0547
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway show-supported-devices
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n -o
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/supportedvpndevices?api-version=2020-11-01
+ response:
+ body:
+ string: '""'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2180'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 08:30:14 GMT
+ - Mon, 12 Apr 2021 09:16:26 GMT
expires:
- '-1'
pragma:
@@ -2484,7 +2608,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 2c0019da-6db8-4494-b49e-1e38bb855d4c
+ - f94a0139-f119-4d3e-a348-7e42bbb094b7
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
status:
code: 200
message: OK
From 985d9d1befee8bb25b8c2b231e83050b21acd9ee Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Tue, 13 Apr 2021 15:57:42 +0800
Subject: [PATCH 17/19] add min-api-version for list-ike-sas and
show-device-config-script
---
src/azure-cli/azure/cli/command_modules/network/commands.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/azure-cli/azure/cli/command_modules/network/commands.py b/src/azure-cli/azure/cli/command_modules/network/commands.py
index 3c1ef3c6f8c..e9b85a87e9a 100644
--- a/src/azure-cli/azure/cli/command_modules/network/commands.py
+++ b/src/azure-cli/azure/cli/command_modules/network/commands.py
@@ -1365,8 +1365,8 @@ def _make_singular(value):
g.show_command('show', 'get', transform=transform_vpn_connection)
g.command('list', 'list', transform=transform_vpn_connection_list)
g.generic_update_command('update', setter_name='begin_create_or_update', custom_func_name='update_vpn_connection')
- g.command('list-ike-sas', 'begin_get_ike_sas', is_preview=True)
- g.custom_command('show-device-config-script', 'show_vpn_connection_device_config_script', client_factory=cf_virtual_network_gateways, is_preview=True)
+ g.command('list-ike-sas', 'begin_get_ike_sas', is_preview=True, min_api='2020-08-01')
+ g.custom_command('show-device-config-script', 'show_vpn_connection_device_config_script', client_factory=cf_virtual_network_gateways, is_preview=True, min_api='2017-09-01')
with self.command_group('network vpn-connection shared-key', network_vpn_sdk, client_factory=cf_virtual_network_gateway_connections) as g:
g.show_command('show', 'get_shared_key')
From 79105eb284d573dd7ff4562c66162844eb9d070e Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Fri, 16 Apr 2021 13:58:36 +0800
Subject: [PATCH 18/19] add tests
---
.../tests/latest/recording_processors.py | 2 +-
...network_active_active_vnet_connection.yaml | 2372 +++++++-------
.../test_network_vnet_gateway_ipsec.yaml | 2769 +++++++++++++++++
.../tests/latest/test_network_commands.py | 35 +-
4 files changed, 3929 insertions(+), 1249 deletions(-)
create mode 100644 src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet_gateway_ipsec.yaml
diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recording_processors.py b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recording_processors.py
index 9aecca1fe06..ea751171ea7 100644
--- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recording_processors.py
+++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recording_processors.py
@@ -24,6 +24,6 @@ def add_sas_token(self, sas_token):
def process_request(self, request):
for sas_token in self._sas_tokens:
body_string = byte_to_str(request.body)
- if sas_token in body_string:
+ if body_string and sas_token in body_string:
request.body = body_string.replace(sas_token, self.SAS_REPLACEMENT)
return request
diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_active_active_vnet_connection.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_active_active_vnet_connection.yaml
index ef3d97f67ea..6a227084624 100644
--- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_active_active_vnet_connection.yaml
+++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_active_active_vnet_connection.yaml
@@ -1,4 +1,242 @@
interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage container create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --account-name --name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2021-01-01
+ response:
+ body:
+ string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-groupbvy56l4cm5xvclfem5lifl725op2rsc3/providers/Microsoft.Storage/storageAccounts/armbuilddemo5ygtzdg6","name":"armbuilddemo5ygtzdg6","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T09:33:57.1682665Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T09:33:57.1682665Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T09:33:57.0432620Z","primaryEndpoints":{"blob":"https://armbuilddemo5ygtzdg6.blob.core.windows.net/","queue":"https://armbuilddemo5ygtzdg6.queue.core.windows.net/","table":"https://armbuilddemo5ygtzdg6.table.core.windows.net/","file":"https://armbuilddemo5ygtzdg6.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-groupq7pgu7g74kinmn5rzzthu6dosn6x3bow/providers/Microsoft.Storage/storageAccounts/armbuilddemokch5pqfy","name":"armbuilddemokch5pqfy","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:14:10.5632137Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:14:10.5632137Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T09:14:10.4538140Z","primaryEndpoints":{"blob":"https://armbuilddemokch5pqfy.blob.core.windows.net/","queue":"https://armbuilddemokch5pqfy.queue.core.windows.net/","table":"https://armbuilddemokch5pqfy.table.core.windows.net/","file":"https://armbuilddemokch5pqfy.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-groupcdatmlwa5j3tifda5whe7d52z4kd5hfs/providers/Microsoft.Storage/storageAccounts/armbuilddemomywovund","name":"armbuilddemomywovund","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:02:03.9819427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:02:03.9819427Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-16T02:02:03.8725717Z","primaryEndpoints":{"blob":"https://armbuilddemomywovund.blob.core.windows.net/","queue":"https://armbuilddemomywovund.queue.core.windows.net/","table":"https://armbuilddemomywovund.table.core.windows.net/","file":"https://armbuilddemomywovund.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-group3yqjvwdwmnx2u5yrciutjqdcmvbpm5xe/providers/Microsoft.Storage/storageAccounts/armbuilddemovtxzzcjo","name":"armbuilddemovtxzzcjo","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T08:17:26.3492168Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T08:17:26.3492168Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T08:17:26.2398063Z","primaryEndpoints":{"blob":"https://armbuilddemovtxzzcjo.blob.core.windows.net/","queue":"https://armbuilddemovtxzzcjo.queue.core.windows.net/","table":"https://armbuilddemovtxzzcjo.table.core.windows.net/","file":"https://armbuilddemovtxzzcjo.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-beta/providers/Microsoft.Storage/storageAccounts/azureclibetarelease","name":"azureclibetarelease","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-11T10:32:24.7099044Z","primaryEndpoints":{"dfs":"https://azureclibetarelease.dfs.core.windows.net/","web":"https://azureclibetarelease.z13.web.core.windows.net/","blob":"https://azureclibetarelease.blob.core.windows.net/","queue":"https://azureclibetarelease.queue.core.windows.net/","table":"https://azureclibetarelease.table.core.windows.net/","file":"https://azureclibetarelease.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azureclibetarelease-secondary.dfs.core.windows.net/","web":"https://azureclibetarelease-secondary.z13.web.core.windows.net/","blob":"https://azureclibetarelease-secondary.blob.core.windows.net/","queue":"https://azureclibetarelease-secondary.queue.core.windows.net/","table":"https://azureclibetarelease-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_state_modb53dudzecixoz4yulrklowkbwbckllykr746enpdi34nwuc6irkd5k/providers/Microsoft.Storage/storageAccounts/clistorage3knyi","name":"clistorage3knyi","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"firsttag":"1","secondtag":"2","thirdtag":""},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T04:25:50.7837511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T04:25:50.7837511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T04:25:50.6587502Z","primaryEndpoints":{"blob":"https://clistorage3knyi.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_state_modebyipc5ssddkadxg5yrhyqndckmodizzl3cc7hsmirdqb6dr2ylk5t/providers/Microsoft.Storage/storageAccounts/clistorage4z7vj","name":"clistorage4z7vj","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"firsttag":"1","secondtag":"2","thirdtag":""},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:17:42.1163483Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:17:42.1163483Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T06:17:42.0068509Z","primaryEndpoints":{"blob":"https://clistorage4z7vj.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_state_modjdjpnmmhsg5ksljahrwrnsp5ibudhksggzzbmp4pjqmc47pesomh3r/providers/Microsoft.Storage/storageAccounts/clistoragejc6le","name":"clistoragejc6le","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"firsttag":"1","secondtag":"2","thirdtag":""},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:36:13.0895897Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:36:13.0895897Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T13:36:12.9801870Z","primaryEndpoints":{"blob":"https://clistoragejc6le.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwufp5tbusewuzx4ai5w3hswshznjqdnj5gfaxtcmvlsnqukjool4eav3sbh7vvbbw/providers/Microsoft.Storage/storageAccounts/clitest6r2rsw7xdj4unms6t","name":"clitest6r2rsw7xdj4unms6t","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T07:08:25.3503244Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T07:08:25.3503244Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T07:08:25.2409298Z","primaryEndpoints":{"blob":"https://clitest6r2rsw7xdj4unms6t.blob.core.windows.net/","queue":"https://clitest6r2rsw7xdj4unms6t.queue.core.windows.net/","table":"https://clitest6r2rsw7xdj4unms6t.table.core.windows.net/","file":"https://clitest6r2rsw7xdj4unms6t.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestresult/providers/Microsoft.Storage/storageAccounts/clitestresultstac","name":"clitestresultstac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-15T06:20:52.6907255Z","primaryEndpoints":{"dfs":"https://clitestresultstac.dfs.core.windows.net/","web":"https://clitestresultstac.z13.web.core.windows.net/","blob":"https://clitestresultstac.blob.core.windows.net/","queue":"https://clitestresultstac.queue.core.windows.net/","table":"https://clitestresultstac.table.core.windows.net/","file":"https://clitestresultstac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestresultstac-secondary.dfs.core.windows.net/","web":"https://clitestresultstac-secondary.z13.web.core.windows.net/","blob":"https://clitestresultstac-secondary.blob.core.windows.net/","queue":"https://clitestresultstac-secondary.queue.core.windows.net/","table":"https://clitestresultstac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-svohdzm0/providers/Microsoft.Storage/storageAccounts/clusterg7scd","name":"clusterg7scd","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:26.3565153Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:26.3565153Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T08:49:26.2471005Z","primaryEndpoints":{"blob":"https://clusterg7scd.blob.core.windows.net/","queue":"https://clusterg7scd.queue.core.windows.net/","table":"https://clusterg7scd.table.core.windows.net/","file":"https://clusterg7scd.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-ut6bercg/providers/Microsoft.Storage/storageAccounts/clusterlsklq","name":"clusterlsklq","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:24.9971070Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:24.9971070Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T08:49:24.9033800Z","primaryEndpoints":{"blob":"https://clusterlsklq.blob.core.windows.net/","queue":"https://clusterlsklq.queue.core.windows.net/","table":"https://clusterlsklq.table.core.windows.net/","file":"https://clusterlsklq.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.Storage/storageAccounts/fystac","name":"fystac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T03:10:13.4426715Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T03:10:13.4426715Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-08T03:10:13.3645539Z","primaryEndpoints":{"dfs":"https://fystac.dfs.core.windows.net/","web":"https://fystac.z13.web.core.windows.net/","blob":"https://fystac.blob.core.windows.net/","queue":"https://fystac.queue.core.windows.net/","table":"https://fystac.table.core.windows.net/","file":"https://fystac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fystac-secondary.dfs.core.windows.net/","web":"https://fystac-secondary.z13.web.core.windows.net/","blob":"https://fystac-secondary.blob.core.windows.net/","queue":"https://fystac-secondary.queue.core.windows.net/","table":"https://fystac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-svohdzm0/providers/Microsoft.Storage/storageAccounts/imageregistryarofw6nwzts","name":"imageregistryarofw6nwzts","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:31.6710346Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:31.6710346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T09:05:31.5616526Z","primaryEndpoints":{"blob":"https://imageregistryarofw6nwzts.blob.core.windows.net/","queue":"https://imageregistryarofw6nwzts.queue.core.windows.net/","table":"https://imageregistryarofw6nwzts.table.core.windows.net/","file":"https://imageregistryarofw6nwzts.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-ut6bercg/providers/Microsoft.Storage/storageAccounts/imageregistryarov6yf6vcw","name":"imageregistryarov6yf6vcw","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:11.4679262Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:11.4679262Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T09:05:11.3585865Z","primaryEndpoints":{"blob":"https://imageregistryarov6yf6vcw.blob.core.windows.net/","queue":"https://imageregistryarov6yf6vcw.queue.core.windows.net/","table":"https://imageregistryarov6yf6vcw.table.core.windows.net/","file":"https://imageregistryarov6yf6vcw.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-weidxu/providers/Microsoft.Storage/storageAccounts/lcok2weidxu","name":"lcok2weidxu","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T03:19:18.1561890Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T03:19:18.1561890Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T03:19:18.0468159Z","primaryEndpoints":{"dfs":"https://lcok2weidxu.dfs.core.windows.net/","web":"https://lcok2weidxu.z13.web.core.windows.net/","blob":"https://lcok2weidxu.blob.core.windows.net/","queue":"https://lcok2weidxu.queue.core.windows.net/","table":"https://lcok2weidxu.table.core.windows.net/","file":"https://lcok2weidxu.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-14T07:23:08.7502552Z","primaryEndpoints":{"dfs":"https://portal2clistorage.dfs.core.windows.net/","web":"https://portal2clistorage.z13.web.core.windows.net/","blob":"https://portal2clistorage.blob.core.windows.net/","queue":"https://portal2clistorage.queue.core.windows.net/","table":"https://portal2clistorage.table.core.windows.net/","file":"https://portal2clistorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://portal2clistorage-secondary.dfs.core.windows.net/","web":"https://portal2clistorage-secondary.z13.web.core.windows.net/","blob":"https://portal2clistorage-secondary.blob.core.windows.net/","queue":"https://portal2clistorage-secondary.queue.core.windows.net/","table":"https://portal2clistorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwenadls","name":"qianwenadls","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T10:11:06.0357634Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T10:11:06.0357634Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-01T10:11:05.9576622Z","primaryEndpoints":{"dfs":"https://qianwenadls.dfs.core.windows.net/","web":"https://qianwenadls.z13.web.core.windows.net/","blob":"https://qianwenadls.blob.core.windows.net/","queue":"https://qianwenadls.queue.core.windows.net/","table":"https://qianwenadls.table.core.windows.net/","file":"https://qianwenadls.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwenadls-secondary.dfs.core.windows.net/","web":"https://qianwenadls-secondary.z13.web.core.windows.net/","blob":"https://qianwenadls-secondary.blob.core.windows.net/","queue":"https://qianwenadls-secondary.queue.core.windows.net/","table":"https://qianwenadls-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwendev","name":"qianwendev","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Network/virtualNetworks/QIAN/subnets/default","action":"Allow","state":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Network/virtualNetworks/qianwendev/subnets/default","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"23.45.1.0/24","action":"Allow"},{"value":"23.45.1.1/24","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T03:29:28.0084761Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T03:29:28.0084761Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-12T03:29:27.9459854Z","primaryEndpoints":{"dfs":"https://qianwendev.dfs.core.windows.net/","web":"https://qianwendev.z13.web.core.windows.net/","blob":"https://qianwendev.blob.core.windows.net/","queue":"https://qianwendev.queue.core.windows.net/","table":"https://qianwendev.table.core.windows.net/","file":"https://qianwendev.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwendev-secondary.dfs.core.windows.net/","web":"https://qianwendev-secondary.z13.web.core.windows.net/","blob":"https://qianwendev-secondary.blob.core.windows.net/","queue":"https://qianwendev-secondary.queue.core.windows.net/","table":"https://qianwendev-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwenhpctarget","name":"qianwenhpctarget","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T07:09:20.3073299Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T07:09:20.3073299Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-06T07:09:20.2291899Z","primaryEndpoints":{"dfs":"https://qianwenhpctarget.dfs.core.windows.net/","web":"https://qianwenhpctarget.z13.web.core.windows.net/","blob":"https://qianwenhpctarget.blob.core.windows.net/","queue":"https://qianwenhpctarget.queue.core.windows.net/","table":"https://qianwenhpctarget.table.core.windows.net/","file":"https://qianwenhpctarget.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwenhpctarget-secondary.dfs.core.windows.net/","web":"https://qianwenhpctarget-secondary.z13.web.core.windows.net/","blob":"https://qianwenhpctarget-secondary.blob.core.windows.net/","queue":"https://qianwenhpctarget-secondary.queue.core.windows.net/","table":"https://qianwenhpctarget-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-yueshi/providers/Microsoft.Storage/storageAccounts/yueshi4debug","name":"yueshi4debug","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-14T09:43:28.2246331Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-14T09:43:28.2246331Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-14T09:43:28.1308789Z","primaryEndpoints":{"dfs":"https://yueshi4debug.dfs.core.windows.net/","web":"https://yueshi4debug.z13.web.core.windows.net/","blob":"https://yueshi4debug.blob.core.windows.net/","queue":"https://yueshi4debug.queue.core.windows.net/","table":"https://yueshi4debug.table.core.windows.net/","file":"https://yueshi4debug.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yueshi4debug-secondary.dfs.core.windows.net/","web":"https://yueshi4debug-secondary.z13.web.core.windows.net/","blob":"https://yueshi4debug-secondary.blob.core.windows.net/","queue":"https://yueshi4debug-secondary.queue.core.windows.net/","table":"https://yueshi4debug-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-4xdsq/providers/Microsoft.Storage/storageAccounts/hdicliy5u7daegwvwo5fd4xv","name":"hdicliy5u7daegwvwo5fd4xv","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T09:42:58.1150743Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T09:42:58.1150743Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T09:42:58.0057516Z","primaryEndpoints":{"blob":"https://hdicliy5u7daegwvwo5fd4xv.blob.core.windows.net/","queue":"https://hdicliy5u7daegwvwo5fd4xv.queue.core.windows.net/","table":"https://hdicliy5u7daegwvwo5fd4xv.table.core.windows.net/","file":"https://hdicliy5u7daegwvwo5fd4xv.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-live-test-rg/providers/Microsoft.Storage/storageAccounts/advisortestsa","name":"advisortestsa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T02:39:47.2953520Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T02:39:47.2953520Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T02:39:47.1860196Z","primaryEndpoints":{"dfs":"https://advisortestsa.dfs.core.windows.net/","web":"https://advisortestsa.z22.web.core.windows.net/","blob":"https://advisortestsa.blob.core.windows.net/","queue":"https://advisortestsa.queue.core.windows.net/","table":"https://advisortestsa.table.core.windows.net/","file":"https://advisortestsa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://advisortestsa-secondary.dfs.core.windows.net/","web":"https://advisortestsa-secondary.z22.web.core.windows.net/","blob":"https://advisortestsa-secondary.blob.core.windows.net/","queue":"https://advisortestsa-secondary.queue.core.windows.net/","table":"https://advisortestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azextensionedge","name":"azextensionedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T08:51:57.6947156Z","primaryEndpoints":{"dfs":"https://azextensionedge.dfs.core.windows.net/","web":"https://azextensionedge.z22.web.core.windows.net/","blob":"https://azextensionedge.blob.core.windows.net/","queue":"https://azextensionedge.queue.core.windows.net/","table":"https://azextensionedge.table.core.windows.net/","file":"https://azextensionedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azextensionedge-secondary.dfs.core.windows.net/","web":"https://azextensionedge-secondary.z22.web.core.windows.net/","blob":"https://azextensionedge-secondary.blob.core.windows.net/","queue":"https://azextensionedge-secondary.queue.core.windows.net/","table":"https://azextensionedge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azurecliedge","name":"azurecliedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-13T08:41:36.2389304Z","primaryEndpoints":{"dfs":"https://azurecliedge.dfs.core.windows.net/","web":"https://azurecliedge.z22.web.core.windows.net/","blob":"https://azurecliedge.blob.core.windows.net/","queue":"https://azurecliedge.queue.core.windows.net/","table":"https://azurecliedge.table.core.windows.net/","file":"https://azurecliedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkml665q5cacvdpt3xnqvtxlf6tnizaecikm3p6b3sjztp3xdmho4xfjertdheykac/providers/Microsoft.Storage/storageAccounts/clitest4y7fofzs3ujuabfp7","name":"clitest4y7fofzs3ujuabfp7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:26:37.1324914Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:26:37.1324914Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T03:26:37.0231365Z","primaryEndpoints":{"blob":"https://clitest4y7fofzs3ujuabfp7.blob.core.windows.net/","queue":"https://clitest4y7fofzs3ujuabfp7.queue.core.windows.net/","table":"https://clitest4y7fofzs3ujuabfp7.table.core.windows.net/","file":"https://clitest4y7fofzs3ujuabfp7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg26ny3xcsyfewv3qg3asrpdgrkc64rwrbyonfryslosgoxwmvoz2x4qln7fd2lowsj/providers/Microsoft.Storage/storageAccounts/clitest5ai4souyakgrdg5oz","name":"clitest5ai4souyakgrdg5oz","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:19.7262912Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:19.7262912Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:53:19.6325274Z","primaryEndpoints":{"blob":"https://clitest5ai4souyakgrdg5oz.blob.core.windows.net/","queue":"https://clitest5ai4souyakgrdg5oz.queue.core.windows.net/","table":"https://clitest5ai4souyakgrdg5oz.table.core.windows.net/","file":"https://clitest5ai4souyakgrdg5oz.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxfhzfdpfi7fwsegigabb6s6nk4vy5y6rfsemeycinzwihgr26aij6xbuszvt3u36/providers/Microsoft.Storage/storageAccounts/clitestbilzhmvshjpgny4qh","name":"clitestbilzhmvshjpgny4qh","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.7269372Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.7269372Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T06:42:36.6019381Z","primaryEndpoints":{"blob":"https://clitestbilzhmvshjpgny4qh.blob.core.windows.net/","queue":"https://clitestbilzhmvshjpgny4qh.queue.core.windows.net/","table":"https://clitestbilzhmvshjpgny4qh.table.core.windows.net/","file":"https://clitestbilzhmvshjpgny4qh.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxagbhj6rvluqjj4gowvxygntfp7jr5523gws2echnpzx7nzftezfbael4roce5776/providers/Microsoft.Storage/storageAccounts/clitestddcgzpyoportuvlfg","name":"clitestddcgzpyoportuvlfg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.3675586Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.3675586Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T06:42:36.2738116Z","primaryEndpoints":{"blob":"https://clitestddcgzpyoportuvlfg.blob.core.windows.net/","queue":"https://clitestddcgzpyoportuvlfg.queue.core.windows.net/","table":"https://clitestddcgzpyoportuvlfg.table.core.windows.net/","file":"https://clitestddcgzpyoportuvlfg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwd3hzs2m3p7fuwb7oe2u4bqwmoe5gb7hsaeut4fb5hpiic3b2dmqcv2yspe3xhalw/providers/Microsoft.Storage/storageAccounts/clitestfnjbadoveut3mvvpf","name":"clitestfnjbadoveut3mvvpf","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:35.0726068Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:35.0726068Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:39:34.9788865Z","primaryEndpoints":{"blob":"https://clitestfnjbadoveut3mvvpf.blob.core.windows.net/","queue":"https://clitestfnjbadoveut3mvvpf.queue.core.windows.net/","table":"https://clitestfnjbadoveut3mvvpf.table.core.windows.net/","file":"https://clitestfnjbadoveut3mvvpf.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvg2r7nbxazbiahljziu2uimigqorwz4k4qumvj5peulw2lh3hjx4igwxqgdyrttk/providers/Microsoft.Storage/storageAccounts/clitestlvvl7xg7t3iwdjgbh","name":"clitestlvvl7xg7t3iwdjgbh","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:21.1012972Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:21.1012972Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:53:20.9919250Z","primaryEndpoints":{"blob":"https://clitestlvvl7xg7t3iwdjgbh.blob.core.windows.net/","queue":"https://clitestlvvl7xg7t3iwdjgbh.queue.core.windows.net/","table":"https://clitestlvvl7xg7t3iwdjgbh.table.core.windows.net/","file":"https://clitestlvvl7xg7t3iwdjgbh.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguq2mdec4p2qmpeq7dstxgbizeznapfh5cyylo2bi2euyvyokiqnggvqhl3eo5qim2/providers/Microsoft.Storage/storageAccounts/clitestogtknxlag5bb2whvf","name":"clitestogtknxlag5bb2whvf","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:33.6663749Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:33.6663749Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:39:33.5882283Z","primaryEndpoints":{"blob":"https://clitestogtknxlag5bb2whvf.blob.core.windows.net/","queue":"https://clitestogtknxlag5bb2whvf.queue.core.windows.net/","table":"https://clitestogtknxlag5bb2whvf.table.core.windows.net/","file":"https://clitestogtknxlag5bb2whvf.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjfczrypeqdy6zjxohpe5d4k5d6nkt2arzlbiqekvuyl5fqino3cbj3byd7d2fiwwy/providers/Microsoft.Storage/storageAccounts/clitestv7f4khn2m2sbya3e7","name":"clitestv7f4khn2m2sbya3e7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.0394335Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.0394335Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T06:42:35.9456810Z","primaryEndpoints":{"blob":"https://clitestv7f4khn2m2sbya3e7.blob.core.windows.net/","queue":"https://clitestv7f4khn2m2sbya3e7.queue.core.windows.net/","table":"https://clitestv7f4khn2m2sbya3e7.table.core.windows.net/","file":"https://clitestv7f4khn2m2sbya3e7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Storage/storageAccounts/clitestvpncnn000002","name":"clitestvpncnn000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T05:21:06.4581879Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T05:21:06.4581879Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-16T05:21:06.3801195Z","primaryEndpoints":{"blob":"https://clitestvpncnn000002.blob.core.windows.net/","queue":"https://clitestvpncnn000002.queue.core.windows.net/","table":"https://clitestvpncnn000002.table.core.windows.net/","file":"https://clitestvpncnn000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capturefy2mop6bzrqz7hyfzlnc7xxafevlj4l5h5gbgds/providers/Microsoft.Storage/storageAccounts/clitestvpngix7nhukff6lqx","name":"clitestvpngix7nhukff6lqx","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:53:59.5988052Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:53:59.5988052Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:53:59.5050192Z","primaryEndpoints":{"blob":"https://clitestvpngix7nhukff6lqx.blob.core.windows.net/","queue":"https://clitestvpngix7nhukff6lqx.queue.core.windows.net/","table":"https://clitestvpngix7nhukff6lqx.table.core.windows.net/","file":"https://clitestvpngix7nhukff6lqx.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstwu","name":"jlstwu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-12T06:29:22.9138997Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-12T06:29:22.9138997Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-12T06:29:22.8201627Z","primaryEndpoints":{"dfs":"https://jlstwu.dfs.core.windows.net/","web":"https://jlstwu.z22.web.core.windows.net/","blob":"https://jlstwu.blob.core.windows.net/","queue":"https://jlstwu.queue.core.windows.net/","table":"https://jlstwu.table.core.windows.net/","file":"https://jlstwu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu-persist/providers/Microsoft.Storage/storageAccounts/kairu","name":"kairu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-13T07:35:18.9856251Z","primaryEndpoints":{"blob":"https://kairu.blob.core.windows.net/","queue":"https://kairu.queue.core.windows.net/","table":"https://kairu.table.core.windows.net/","file":"https://kairu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu/providers/Microsoft.Storage/storageAccounts/kairu2","name":"kairu2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T02:10:12.5165019Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T02:10:12.5165019Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T02:10:12.4383643Z","primaryEndpoints":{"blob":"https://kairu2.blob.core.windows.net/","queue":"https://kairu2.queue.core.windows.net/","table":"https://kairu2.table.core.windows.net/","file":"https://kairu2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-live-test-rg/providers/Microsoft.Storage/storageAccounts/locksa","name":"locksa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"azureFilesIdentityBasedAuthentication":{"directoryServiceOptions":"None"},"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:24:17.1371655Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:24:17.1371655Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:24:17.0434116Z","primaryEndpoints":{"dfs":"https://locksa.dfs.core.windows.net/","web":"https://locksa.z22.web.core.windows.net/","blob":"https://locksa.blob.core.windows.net/","queue":"https://locksa.queue.core.windows.net/","table":"https://locksa.table.core.windows.net/","file":"https://locksa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://locksa-secondary.dfs.core.windows.net/","web":"https://locksa-secondary.z22.web.core.windows.net/","blob":"https://locksa-secondary.blob.core.windows.net/","queue":"https://locksa-secondary.queue.core.windows.net/","table":"https://locksa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yyc-westus/providers/Microsoft.Storage/storageAccounts/sayyc","name":"sayyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T03:49:33.2385920Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T03:49:33.2385920Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-16T03:49:33.1135932Z","primaryEndpoints":{"dfs":"https://sayyc.dfs.core.windows.net/","web":"https://sayyc.z22.web.core.windows.net/","blob":"https://sayyc.blob.core.windows.net/","queue":"https://sayyc.queue.core.windows.net/","table":"https://sayyc.table.core.windows.net/","file":"https://sayyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sayyc-secondary.dfs.core.windows.net/","web":"https://sayyc-secondary.z22.web.core.windows.net/","blob":"https://sayyc-secondary.blob.core.windows.net/","queue":"https://sayyc-secondary.queue.core.windows.net/","table":"https://sayyc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.Storage/storageAccounts/sharedvmextension","name":"sharedvmextension","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-06T03:37:04.8004229Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-06T03:37:04.8004229Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-06T03:37:04.7066555Z","primaryEndpoints":{"dfs":"https://sharedvmextension.dfs.core.windows.net/","web":"https://sharedvmextension.z22.web.core.windows.net/","blob":"https://sharedvmextension.blob.core.windows.net/","queue":"https://sharedvmextension.queue.core.windows.net/","table":"https://sharedvmextension.table.core.windows.net/","file":"https://sharedvmextension.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sharedvmextension-secondary.dfs.core.windows.net/","web":"https://sharedvmextension-secondary.z22.web.core.windows.net/","blob":"https://sharedvmextension-secondary.blob.core.windows.net/","queue":"https://sharedvmextension-secondary.queue.core.windows.net/","table":"https://sharedvmextension-secondary.table.core.windows.net/"}}},{"identity":{"principalId":"c120e453-0fb4-41f4-b9e7-ac280e27992a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testcreationtime","name":"testcreationtime","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"keyvaultproperties":{"currentVersionedKeyIdentifier":"https://ysvault.vault.azure.net/keys/testkey/d8d87cea758042e6adf5a4074074143d","lastKeyRotationTimestamp":"2021-04-08T03:14:41.3659071Z","currentVersionedKeyExpirationTimestamp":"1970-01-01T00:00:00.0000000Z","keyvaulturi":"https://ysvault.vault.azure.net/","keyname":"testkey"},"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-08T02:43:57.2406486Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-08T02:43:57.2406486Z"}},"keySource":"Microsoft.Keyvault"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-08T02:43:57.1469079Z","primaryEndpoints":{"dfs":"https://testcreationtime.dfs.core.windows.net/","web":"https://testcreationtime.z22.web.core.windows.net/","blob":"https://testcreationtime.blob.core.windows.net/","queue":"https://testcreationtime.queue.core.windows.net/","table":"https://testcreationtime.table.core.windows.net/","file":"https://testcreationtime.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict2hlt3hjd6ftbhmhgs4sme5ehjdliqmupshzat3mfm4/providers/Microsoft.Storage/storageAccounts/vhdstorage1cc5c55e65c6ba","name":"vhdstorage1cc5c55e65c6ba","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:15:15.5847034Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:15:15.5847034Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T10:15:15.5065645Z","primaryEndpoints":{"blob":"https://vhdstorage1cc5c55e65c6ba.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_from_unmanaged_diskdssdpxnb5ldydequta6oeaw5ageohexhny22dt6pecu3/providers/Microsoft.Storage/storageAccounts/vhdstorage275fba07affab1","name":"vhdstorage275fba07affab1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:11:40.7135540Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:11:40.7135540Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:11:40.6198025Z","primaryEndpoints":{"blob":"https://vhdstorage275fba07affab1.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflicttl5x5jhkyghl4tgcjnc5fzoouxxkiwqaqytbgj2uyi/providers/Microsoft.Storage/storageAccounts/vhdstorage322ec240306b45","name":"vhdstorage322ec240306b45","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:54:55.4766204Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:54:55.4766204Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T03:54:55.3828470Z","primaryEndpoints":{"blob":"https://vhdstorage322ec240306b45.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_with_specialized_unmanaged_disk3n7e7ckolh67wsjyh5we5a3jyl7cxfqv/providers/Microsoft.Storage/storageAccounts/vhdstorage8eeecfe0931d90","name":"vhdstorage8eeecfe0931d90","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:37:40.7074350Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:37:40.7074350Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T13:37:40.6136620Z","primaryEndpoints":{"blob":"https://vhdstorage8eeecfe0931d90.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_invoke_actionkcijqrlzz6uanpvfjygacx6adl5p3mytk73vdybjmskrjewyzwlzh/providers/Microsoft.Storage/storageAccounts/vhdstorage90ae149a0f6ea4","name":"vhdstorage90ae149a0f6ea4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T07:12:59.4122686Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T07:12:59.4122686Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T07:12:59.3185183Z","primaryEndpoints":{"blob":"https://vhdstorage90ae149a0f6ea4.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_with_specialized_unmanaged_diskvi24oti7kwtozytlnbd5545nkxjm2vr4/providers/Microsoft.Storage/storageAccounts/vhdstorageb22faf61acadba","name":"vhdstorageb22faf61acadba","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:19:14.5651192Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:19:14.5651192Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T06:19:14.4713686Z","primaryEndpoints":{"blob":"https://vhdstorageb22faf61acadba.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_with_specialized_unmanaged_diskqjsj2uyj7ggeqph7kggnq7xhxqrguxq3/providers/Microsoft.Storage/storageAccounts/vhdstoragecbb56a895c55ad","name":"vhdstoragecbb56a895c55ad","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:13:22.9411349Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:13:22.9411349Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T10:13:22.8473784Z","primaryEndpoints":{"blob":"https://vhdstoragecbb56a895c55ad.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_with_specialized_unmanaged_disksg6yqaj5wgtkxwkb4flr3x5c56fq5wf6/providers/Microsoft.Storage/storageAccounts/vhdstoragef5d18edf59d8b9","name":"vhdstoragef5d18edf59d8b9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:13:52.1994651Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:13:52.1994651Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:13:52.0744621Z","primaryEndpoints":{"blob":"https://vhdstoragef5d18edf59d8b9.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssa","name":"yssa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-27T14:55:33.7123620Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-27T14:55:33.7123620Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-27T14:55:33.6342573Z","primaryEndpoints":{"dfs":"https://yssa.dfs.core.windows.net/","web":"https://yssa.z22.web.core.windows.net/","blob":"https://yssa.blob.core.windows.net/","queue":"https://yssa.queue.core.windows.net/","table":"https://yssa.table.core.windows.net/","file":"https://yssa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssa-secondary.dfs.core.windows.net/","web":"https://yssa-secondary.z22.web.core.windows.net/","blob":"https://yssa-secondary.blob.core.windows.net/","queue":"https://yssa-secondary.queue.core.windows.net/","table":"https://yssa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaadls","name":"yssaadls","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-11T08:16:02.3188031Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-11T08:16:02.3188031Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-11T08:16:02.2406559Z","primaryEndpoints":{"dfs":"https://yssaadls.dfs.core.windows.net/","web":"https://yssaadls.z22.web.core.windows.net/","blob":"https://yssaadls.blob.core.windows.net/","queue":"https://yssaadls.queue.core.windows.net/","table":"https://yssaadls.table.core.windows.net/","file":"https://yssaadls.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssaadls-secondary.dfs.core.windows.net/","web":"https://yssaadls-secondary.z22.web.core.windows.net/","blob":"https://yssaadls-secondary.blob.core.windows.net/","queue":"https://yssaadls-secondary.queue.core.windows.net/","table":"https://yssaadls-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssatmp","name":"yssatmp","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-04T07:19:47.0265181Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-04T07:19:47.0265181Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-02-04T07:19:46.9171303Z","primaryEndpoints":{"dfs":"https://yssatmp.dfs.core.windows.net/","blob":"https://yssatmp.blob.core.windows.net/","table":"https://yssatmp.table.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssatmp-secondary.dfs.core.windows.net/","blob":"https://yssatmp-secondary.blob.core.windows.net/","table":"https://yssatmp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtestss","name":"zuhtestss","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T03:15:16.1506479Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T03:15:16.1506479Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T03:15:16.0412704Z","primaryEndpoints":{"blob":"https://zuhtestss.blob.core.windows.net/","queue":"https://zuhtestss.queue.core.windows.net/","table":"https://zuhtestss.table.core.windows.net/","file":"https://zuhtestss.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zuhtestss-secondary.blob.core.windows.net/","queue":"https://zuhtestss-secondary.queue.core.windows.net/","table":"https://zuhtestss-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/azuresdktest","name":"azuresdktest","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-12T06:32:07.0689199Z","primaryEndpoints":{"dfs":"https://azuresdktest.dfs.core.windows.net/","web":"https://azuresdktest.z7.web.core.windows.net/","blob":"https://azuresdktest.blob.core.windows.net/","queue":"https://azuresdktest.queue.core.windows.net/","table":"https://azuresdktest.table.core.windows.net/","file":"https://azuresdktest.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.Storage/storageAccounts/clitesterlb3npa6l4s4denq","name":"clitesterlb3npa6l4s4denq","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:29:02.4991035Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:29:02.4991035Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-16T02:29:02.4209532Z","primaryEndpoints":{"blob":"https://clitesterlb3npa6l4s4denq.blob.core.windows.net/","queue":"https://clitesterlb3npa6l4s4denq.queue.core.windows.net/","table":"https://clitesterlb3npa6l4s4denq.table.core.windows.net/","file":"https://clitesterlb3npa6l4s4denq.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524","name":"cs1100320004dd89524","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-26T05:48:15.6545059Z","primaryEndpoints":{"dfs":"https://cs1100320004dd89524.dfs.core.windows.net/","web":"https://cs1100320004dd89524.z23.web.core.windows.net/","blob":"https://cs1100320004dd89524.blob.core.windows.net/","queue":"https://cs1100320004dd89524.queue.core.windows.net/","table":"https://cs1100320004dd89524.table.core.windows.net/","file":"https://cs1100320004dd89524.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-25T03:24:00.9490326Z","primaryEndpoints":{"dfs":"https://cs1100320007de01867.dfs.core.windows.net/","web":"https://cs1100320007de01867.z23.web.core.windows.net/","blob":"https://cs1100320007de01867.blob.core.windows.net/","queue":"https://cs1100320007de01867.queue.core.windows.net/","table":"https://cs1100320007de01867.table.core.windows.net/","file":"https://cs1100320007de01867.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc","name":"cs1100320008debd5bc","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-17T07:12:44.0351358Z","primaryEndpoints":{"dfs":"https://cs1100320008debd5bc.dfs.core.windows.net/","web":"https://cs1100320008debd5bc.z23.web.core.windows.net/","blob":"https://cs1100320008debd5bc.blob.core.windows.net/","queue":"https://cs1100320008debd5bc.queue.core.windows.net/","table":"https://cs1100320008debd5bc.table.core.windows.net/","file":"https://cs1100320008debd5bc.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771","name":"cs11003200092fe0771","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-23T07:08:51.0811120Z","primaryEndpoints":{"dfs":"https://cs11003200092fe0771.dfs.core.windows.net/","web":"https://cs11003200092fe0771.z23.web.core.windows.net/","blob":"https://cs11003200092fe0771.blob.core.windows.net/","queue":"https://cs11003200092fe0771.queue.core.windows.net/","table":"https://cs11003200092fe0771.table.core.windows.net/","file":"https://cs11003200092fe0771.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71","name":"cs110032000c31bae71","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-15T06:39:35.4180004Z","primaryEndpoints":{"dfs":"https://cs110032000c31bae71.dfs.core.windows.net/","web":"https://cs110032000c31bae71.z23.web.core.windows.net/","blob":"https://cs110032000c31bae71.blob.core.windows.net/","queue":"https://cs110032000c31bae71.queue.core.windows.net/","table":"https://cs110032000c31bae71.table.core.windows.net/","file":"https://cs110032000c31bae71.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-22T02:06:18.4217109Z","primaryEndpoints":{"dfs":"https://cs110032000ca62af00.dfs.core.windows.net/","web":"https://cs110032000ca62af00.z23.web.core.windows.net/","blob":"https://cs110032000ca62af00.blob.core.windows.net/","queue":"https://cs110032000ca62af00.queue.core.windows.net/","table":"https://cs110032000ca62af00.table.core.windows.net/","file":"https://cs110032000ca62af00.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47","name":"cs11003200127365c47","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-25T03:10:52.5318146Z","primaryEndpoints":{"dfs":"https://cs11003200127365c47.dfs.core.windows.net/","web":"https://cs11003200127365c47.z23.web.core.windows.net/","blob":"https://cs11003200127365c47.blob.core.windows.net/","queue":"https://cs11003200127365c47.queue.core.windows.net/","table":"https://cs11003200127365c47.table.core.windows.net/","file":"https://cs11003200127365c47.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452","name":"cs1100320012c36c452","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T08:04:25.5198295Z","primaryEndpoints":{"dfs":"https://cs1100320012c36c452.dfs.core.windows.net/","web":"https://cs1100320012c36c452.z23.web.core.windows.net/","blob":"https://cs1100320012c36c452.blob.core.windows.net/","queue":"https://cs1100320012c36c452.queue.core.windows.net/","table":"https://cs1100320012c36c452.table.core.windows.net/","file":"https://cs1100320012c36c452.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst","name":"jlst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-31T03:05:24.8023719Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-31T03:05:24.8023719Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-12-31T03:05:24.7086186Z","primaryEndpoints":{"dfs":"https://jlst.dfs.core.windows.net/","web":"https://jlst.z23.web.core.windows.net/","blob":"https://jlst.blob.core.windows.net/","queue":"https://jlst.queue.core.windows.net/","table":"https://jlst.table.core.windows.net/","file":"https://jlst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs","name":"jlstcs","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-13T06:39:02.4278678Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-13T06:39:02.4278678Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-13T06:39:02.3497160Z","primaryEndpoints":{"dfs":"https://jlstcs.dfs.core.windows.net/","web":"https://jlstcs.z23.web.core.windows.net/","blob":"https://jlstcs.blob.core.windows.net/","queue":"https://jlstcs.queue.core.windows.net/","table":"https://jlstcs.table.core.windows.net/","file":"https://jlstcs.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag","name":"qianwensdiag","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T07:17:09.1138103Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T07:17:09.1138103Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T07:17:09.0514178Z","primaryEndpoints":{"blob":"https://qianwensdiag.blob.core.windows.net/","queue":"https://qianwensdiag.queue.core.windows.net/","table":"https://qianwensdiag.table.core.windows.net/","file":"https://qianwensdiag.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/extmigrate","name":"extmigrate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T08:26:10.5858998Z","primaryEndpoints":{"blob":"https://extmigrate.blob.core.windows.net/","queue":"https://extmigrate.queue.core.windows.net/","table":"https://extmigrate.table.core.windows.net/","file":"https://extmigrate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://extmigrate-secondary.blob.core.windows.net/","queue":"https://extmigrate-secondary.queue.core.windows.net/","table":"https://extmigrate-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengtestsa","name":"fengtestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:10:28.6266623Z","primaryEndpoints":{"dfs":"https://fengtestsa.dfs.core.windows.net/","web":"https://fengtestsa.z19.web.core.windows.net/","blob":"https://fengtestsa.blob.core.windows.net/","queue":"https://fengtestsa.queue.core.windows.net/","table":"https://fengtestsa.table.core.windows.net/","file":"https://fengtestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengtestsa-secondary.dfs.core.windows.net/","web":"https://fengtestsa-secondary.z19.web.core.windows.net/","blob":"https://fengtestsa-secondary.blob.core.windows.net/","queue":"https://fengtestsa-secondary.queue.core.windows.net/","table":"https://fengtestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907/providers/Microsoft.Storage/storageAccounts/6ynst8ytvcms52eviy9cme3e","name":"6ynst8ytvcms52eviy9cme3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"createdby":"azureimagebuilder","magicvalue":"0d819542a3774a2a8709401a7cd09eb8"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-10T11:43:29.9651518Z","primaryEndpoints":{"blob":"https://6ynst8ytvcms52eviy9cme3e.blob.core.windows.net/","queue":"https://6ynst8ytvcms52eviy9cme3e.queue.core.windows.net/","table":"https://6ynst8ytvcms52eviy9cme3e.table.core.windows.net/","file":"https://6ynst8ytvcms52eviy9cme3e.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-logreplay3j4ivasbsry/providers/Microsoft.Storage/storageAccounts/logreplay3tsvbsxzhww4a2t","name":"logreplay3tsvbsxzhww4a2t","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:38:10.2570226Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:38:10.2570226Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-16T02:38:10.1789112Z","primaryEndpoints":{"dfs":"https://logreplay3tsvbsxzhww4a2t.dfs.core.windows.net/","web":"https://logreplay3tsvbsxzhww4a2t.z4.web.core.windows.net/","blob":"https://logreplay3tsvbsxzhww4a2t.blob.core.windows.net/","queue":"https://logreplay3tsvbsxzhww4a2t.queue.core.windows.net/","table":"https://logreplay3tsvbsxzhww4a2t.table.core.windows.net/","file":"https://logreplay3tsvbsxzhww4a2t.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-logreplay7gep5ibopcy/providers/Microsoft.Storage/storageAccounts/logreplayf6wgz54rxj2ases","name":"logreplayf6wgz54rxj2ases","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:24:34.9907400Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:24:34.9907400Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-16T02:24:34.9438356Z","primaryEndpoints":{"dfs":"https://logreplayf6wgz54rxj2ases.dfs.core.windows.net/","web":"https://logreplayf6wgz54rxj2ases.z4.web.core.windows.net/","blob":"https://logreplayf6wgz54rxj2ases.blob.core.windows.net/","queue":"https://logreplayf6wgz54rxj2ases.queue.core.windows.net/","table":"https://logreplayf6wgz54rxj2ases.table.core.windows.net/","file":"https://logreplayf6wgz54rxj2ases.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-logreplayfpuuxvh6mjd/providers/Microsoft.Storage/storageAccounts/logreplaykks6vblal5aswvg","name":"logreplaykks6vblal5aswvg","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T03:17:13.7008911Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T03:17:13.7008911Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-16T03:17:13.6227318Z","primaryEndpoints":{"dfs":"https://logreplaykks6vblal5aswvg.dfs.core.windows.net/","web":"https://logreplaykks6vblal5aswvg.z4.web.core.windows.net/","blob":"https://logreplaykks6vblal5aswvg.blob.core.windows.net/","queue":"https://logreplaykks6vblal5aswvg.queue.core.windows.net/","table":"https://logreplaykks6vblal5aswvg.table.core.windows.net/","file":"https://logreplaykks6vblal5aswvg.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaeuap","name":"yssaeuap","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-10T03:37:15.2571646Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-10T03:37:15.2571646Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-10T03:37:15.1871764Z","primaryEndpoints":{"dfs":"https://yssaeuap.dfs.core.windows.net/","web":"https://yssaeuap.z3.web.core.windows.net/","blob":"https://yssaeuap.blob.core.windows.net/","queue":"https://yssaeuap.queue.core.windows.net/","table":"https://yssaeuap.table.core.windows.net/","file":"https://yssaeuap.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssaeuap-secondary.dfs.core.windows.net/","web":"https://yssaeuap-secondary.z3.web.core.windows.net/","blob":"https://yssaeuap-secondary.blob.core.windows.net/","queue":"https://yssaeuap-secondary.queue.core.windows.net/","table":"https://yssaeuap-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssanew","name":"yssanew","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-06T09:18:53.7220848Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-06T09:18:53.7220848Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-06T09:18:53.6620997Z","primaryEndpoints":{"dfs":"https://yssanew.dfs.core.windows.net/","web":"https://yssanew.z3.web.core.windows.net/","blob":"https://yssanew.blob.core.windows.net/","queue":"https://yssanew.queue.core.windows.net/","table":"https://yssanew.table.core.windows.net/","file":"https://yssanew.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssanew-secondary.dfs.core.windows.net/","web":"https://yssanew-secondary.z3.web.core.windows.net/","blob":"https://yssanew-secondary.blob.core.windows.net/","queue":"https://yssanew-secondary.queue.core.windows.net/","table":"https://yssanew-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhdefault","name":"zuhdefault","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T09:02:47.5887943Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T09:02:47.5887943Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T09:02:47.5187780Z","primaryEndpoints":{"dfs":"https://zuhdefault.dfs.core.windows.net/","web":"https://zuhdefault.z3.web.core.windows.net/","blob":"https://zuhdefault.blob.core.windows.net/","queue":"https://zuhdefault.queue.core.windows.net/","table":"https://zuhdefault.table.core.windows.net/","file":"https://zuhdefault.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhdefault-secondary.dfs.core.windows.net/","web":"https://zuhdefault-secondary.z3.web.core.windows.net/","blob":"https://zuhdefault-secondary.blob.core.windows.net/","queue":"https://zuhdefault-secondary.queue.core.windows.net/","table":"https://zuhdefault-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtest","name":"zuhtest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"identity":{"type":"ManagedServiceIdentity","userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zuhid"},"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Creating","creationTime":"2021-01-14T07:13:45.0603798Z","primaryEndpoints":{"dfs":"https://zuhtest.dfs.core.windows.net/","web":"https://zuhtest.z3.web.core.windows.net/","blob":"https://zuhtest.blob.core.windows.net/","queue":"https://zuhtest.queue.core.windows.net/","table":"https://zuhtest.table.core.windows.net/","file":"https://zuhtest.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhtest-secondary.dfs.core.windows.net/","web":"https://zuhtest-secondary.z3.web.core.windows.net/","blob":"https://zuhtest-secondary.blob.core.windows.net/","queue":"https://zuhtest-secondary.queue.core.windows.net/","table":"https://zuhtest-secondary.table.core.windows.net/"}}}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '149295'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:21:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-original-request-ids:
+ - 0eb1585f-72a8-4741-a10a-989a6bea2ec3
+ - f823b682-ef7e-46af-a172-bdaf2e900c25
+ - 296d363f-6ace-45df-aa9f-fb7bb11c4a3c
+ - 41e9e35e-dc43-4c14-b5ae-84067937d820
+ - f6b58130-d2d9-45ee-9958-9e165b9cba1f
+ - 98b56765-0768-4f57-beb0-50d47c572bb1
+ - 38216f1f-7986-4a7d-abf1-f2362d22bfeb
+ - d6efc08c-b556-448f-a2fd-673788e411e0
+ - 61298ca4-466e-421f-b5d0-baff02db8db8
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage container create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - --account-name --name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Storage/storageAccounts/clitestvpncnn000002/listKeys?api-version=2021-01-01&$expand=kerb
+ response:
+ body:
+ string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '288'
+ content-type:
+ - application/json
+ date:
+ - Fri, 16 Apr 2021 05:21:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-Azure-Storage-Resource-Provider/1.0,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-ratelimit-remaining-subscription-resource-requests:
+ - '11998'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.22.0
+ x-ms-date:
+ - Fri, 16 Apr 2021 05:21:29 GMT
+ x-ms-version:
+ - '2018-11-09'
+ method: PUT
+ uri: https://clitestvpncnn000002.blob.core.windows.net/clitestvpngw000003?restype=container
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 16 Apr 2021 05:21:33 GMT
+ etag:
+ - '"0x8D900978003D954"'
+ last-modified:
+ - Fri, 16 Apr 2021 05:21:33 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-version:
+ - '2018-11-09'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob generate-sas
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n --account-name -c --permissions --expiry -o
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2021-01-01
+ response:
+ body:
+ string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-groupbvy56l4cm5xvclfem5lifl725op2rsc3/providers/Microsoft.Storage/storageAccounts/armbuilddemo5ygtzdg6","name":"armbuilddemo5ygtzdg6","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T09:33:57.1682665Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T09:33:57.1682665Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T09:33:57.0432620Z","primaryEndpoints":{"blob":"https://armbuilddemo5ygtzdg6.blob.core.windows.net/","queue":"https://armbuilddemo5ygtzdg6.queue.core.windows.net/","table":"https://armbuilddemo5ygtzdg6.table.core.windows.net/","file":"https://armbuilddemo5ygtzdg6.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-groupq7pgu7g74kinmn5rzzthu6dosn6x3bow/providers/Microsoft.Storage/storageAccounts/armbuilddemokch5pqfy","name":"armbuilddemokch5pqfy","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:14:10.5632137Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:14:10.5632137Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T09:14:10.4538140Z","primaryEndpoints":{"blob":"https://armbuilddemokch5pqfy.blob.core.windows.net/","queue":"https://armbuilddemokch5pqfy.queue.core.windows.net/","table":"https://armbuilddemokch5pqfy.table.core.windows.net/","file":"https://armbuilddemokch5pqfy.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-groupcdatmlwa5j3tifda5whe7d52z4kd5hfs/providers/Microsoft.Storage/storageAccounts/armbuilddemomywovund","name":"armbuilddemomywovund","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:02:03.9819427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:02:03.9819427Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-16T02:02:03.8725717Z","primaryEndpoints":{"blob":"https://armbuilddemomywovund.blob.core.windows.net/","queue":"https://armbuilddemomywovund.queue.core.windows.net/","table":"https://armbuilddemomywovund.table.core.windows.net/","file":"https://armbuilddemomywovund.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-group3yqjvwdwmnx2u5yrciutjqdcmvbpm5xe/providers/Microsoft.Storage/storageAccounts/armbuilddemovtxzzcjo","name":"armbuilddemovtxzzcjo","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T08:17:26.3492168Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T08:17:26.3492168Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T08:17:26.2398063Z","primaryEndpoints":{"blob":"https://armbuilddemovtxzzcjo.blob.core.windows.net/","queue":"https://armbuilddemovtxzzcjo.queue.core.windows.net/","table":"https://armbuilddemovtxzzcjo.table.core.windows.net/","file":"https://armbuilddemovtxzzcjo.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-beta/providers/Microsoft.Storage/storageAccounts/azureclibetarelease","name":"azureclibetarelease","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-11T10:32:24.7099044Z","primaryEndpoints":{"dfs":"https://azureclibetarelease.dfs.core.windows.net/","web":"https://azureclibetarelease.z13.web.core.windows.net/","blob":"https://azureclibetarelease.blob.core.windows.net/","queue":"https://azureclibetarelease.queue.core.windows.net/","table":"https://azureclibetarelease.table.core.windows.net/","file":"https://azureclibetarelease.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azureclibetarelease-secondary.dfs.core.windows.net/","web":"https://azureclibetarelease-secondary.z13.web.core.windows.net/","blob":"https://azureclibetarelease-secondary.blob.core.windows.net/","queue":"https://azureclibetarelease-secondary.queue.core.windows.net/","table":"https://azureclibetarelease-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_state_modb53dudzecixoz4yulrklowkbwbckllykr746enpdi34nwuc6irkd5k/providers/Microsoft.Storage/storageAccounts/clistorage3knyi","name":"clistorage3knyi","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"firsttag":"1","secondtag":"2","thirdtag":""},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T04:25:50.7837511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T04:25:50.7837511Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T04:25:50.6587502Z","primaryEndpoints":{"blob":"https://clistorage3knyi.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_state_modebyipc5ssddkadxg5yrhyqndckmodizzl3cc7hsmirdqb6dr2ylk5t/providers/Microsoft.Storage/storageAccounts/clistorage4z7vj","name":"clistorage4z7vj","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"firsttag":"1","secondtag":"2","thirdtag":""},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:17:42.1163483Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:17:42.1163483Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T06:17:42.0068509Z","primaryEndpoints":{"blob":"https://clistorage4z7vj.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_state_modjdjpnmmhsg5ksljahrwrnsp5ibudhksggzzbmp4pjqmc47pesomh3r/providers/Microsoft.Storage/storageAccounts/clistoragejc6le","name":"clistoragejc6le","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"firsttag":"1","secondtag":"2","thirdtag":""},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:36:13.0895897Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:36:13.0895897Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T13:36:12.9801870Z","primaryEndpoints":{"blob":"https://clistoragejc6le.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwufp5tbusewuzx4ai5w3hswshznjqdnj5gfaxtcmvlsnqukjool4eav3sbh7vvbbw/providers/Microsoft.Storage/storageAccounts/clitest6r2rsw7xdj4unms6t","name":"clitest6r2rsw7xdj4unms6t","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T07:08:25.3503244Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T07:08:25.3503244Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T07:08:25.2409298Z","primaryEndpoints":{"blob":"https://clitest6r2rsw7xdj4unms6t.blob.core.windows.net/","queue":"https://clitest6r2rsw7xdj4unms6t.queue.core.windows.net/","table":"https://clitest6r2rsw7xdj4unms6t.table.core.windows.net/","file":"https://clitest6r2rsw7xdj4unms6t.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestresult/providers/Microsoft.Storage/storageAccounts/clitestresultstac","name":"clitestresultstac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-15T06:20:52.6907255Z","primaryEndpoints":{"dfs":"https://clitestresultstac.dfs.core.windows.net/","web":"https://clitestresultstac.z13.web.core.windows.net/","blob":"https://clitestresultstac.blob.core.windows.net/","queue":"https://clitestresultstac.queue.core.windows.net/","table":"https://clitestresultstac.table.core.windows.net/","file":"https://clitestresultstac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestresultstac-secondary.dfs.core.windows.net/","web":"https://clitestresultstac-secondary.z13.web.core.windows.net/","blob":"https://clitestresultstac-secondary.blob.core.windows.net/","queue":"https://clitestresultstac-secondary.queue.core.windows.net/","table":"https://clitestresultstac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-svohdzm0/providers/Microsoft.Storage/storageAccounts/clusterg7scd","name":"clusterg7scd","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:26.3565153Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:26.3565153Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T08:49:26.2471005Z","primaryEndpoints":{"blob":"https://clusterg7scd.blob.core.windows.net/","queue":"https://clusterg7scd.queue.core.windows.net/","table":"https://clusterg7scd.table.core.windows.net/","file":"https://clusterg7scd.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-ut6bercg/providers/Microsoft.Storage/storageAccounts/clusterlsklq","name":"clusterlsklq","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:24.9971070Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T08:49:24.9971070Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T08:49:24.9033800Z","primaryEndpoints":{"blob":"https://clusterlsklq.blob.core.windows.net/","queue":"https://clusterlsklq.queue.core.windows.net/","table":"https://clusterlsklq.table.core.windows.net/","file":"https://clusterlsklq.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.Storage/storageAccounts/fystac","name":"fystac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T03:10:13.4426715Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T03:10:13.4426715Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-08T03:10:13.3645539Z","primaryEndpoints":{"dfs":"https://fystac.dfs.core.windows.net/","web":"https://fystac.z13.web.core.windows.net/","blob":"https://fystac.blob.core.windows.net/","queue":"https://fystac.queue.core.windows.net/","table":"https://fystac.table.core.windows.net/","file":"https://fystac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fystac-secondary.dfs.core.windows.net/","web":"https://fystac-secondary.z13.web.core.windows.net/","blob":"https://fystac-secondary.blob.core.windows.net/","queue":"https://fystac-secondary.queue.core.windows.net/","table":"https://fystac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-svohdzm0/providers/Microsoft.Storage/storageAccounts/imageregistryarofw6nwzts","name":"imageregistryarofw6nwzts","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:31.6710346Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:31.6710346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T09:05:31.5616526Z","primaryEndpoints":{"blob":"https://imageregistryarofw6nwzts.blob.core.windows.net/","queue":"https://imageregistryarofw6nwzts.queue.core.windows.net/","table":"https://imageregistryarofw6nwzts.table.core.windows.net/","file":"https://imageregistryarofw6nwzts.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aro-ut6bercg/providers/Microsoft.Storage/storageAccounts/imageregistryarov6yf6vcw","name":"imageregistryarov6yf6vcw","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:11.4679262Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-12T09:05:11.4679262Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-12T09:05:11.3585865Z","primaryEndpoints":{"blob":"https://imageregistryarov6yf6vcw.blob.core.windows.net/","queue":"https://imageregistryarov6yf6vcw.queue.core.windows.net/","table":"https://imageregistryarov6yf6vcw.table.core.windows.net/","file":"https://imageregistryarov6yf6vcw.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-weidxu/providers/Microsoft.Storage/storageAccounts/lcok2weidxu","name":"lcok2weidxu","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T03:19:18.1561890Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T03:19:18.1561890Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T03:19:18.0468159Z","primaryEndpoints":{"dfs":"https://lcok2weidxu.dfs.core.windows.net/","web":"https://lcok2weidxu.z13.web.core.windows.net/","blob":"https://lcok2weidxu.blob.core.windows.net/","queue":"https://lcok2weidxu.queue.core.windows.net/","table":"https://lcok2weidxu.table.core.windows.net/","file":"https://lcok2weidxu.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-14T07:23:08.7502552Z","primaryEndpoints":{"dfs":"https://portal2clistorage.dfs.core.windows.net/","web":"https://portal2clistorage.z13.web.core.windows.net/","blob":"https://portal2clistorage.blob.core.windows.net/","queue":"https://portal2clistorage.queue.core.windows.net/","table":"https://portal2clistorage.table.core.windows.net/","file":"https://portal2clistorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://portal2clistorage-secondary.dfs.core.windows.net/","web":"https://portal2clistorage-secondary.z13.web.core.windows.net/","blob":"https://portal2clistorage-secondary.blob.core.windows.net/","queue":"https://portal2clistorage-secondary.queue.core.windows.net/","table":"https://portal2clistorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwenadls","name":"qianwenadls","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T10:11:06.0357634Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-01T10:11:06.0357634Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-01T10:11:05.9576622Z","primaryEndpoints":{"dfs":"https://qianwenadls.dfs.core.windows.net/","web":"https://qianwenadls.z13.web.core.windows.net/","blob":"https://qianwenadls.blob.core.windows.net/","queue":"https://qianwenadls.queue.core.windows.net/","table":"https://qianwenadls.table.core.windows.net/","file":"https://qianwenadls.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwenadls-secondary.dfs.core.windows.net/","web":"https://qianwenadls-secondary.z13.web.core.windows.net/","blob":"https://qianwenadls-secondary.blob.core.windows.net/","queue":"https://qianwenadls-secondary.queue.core.windows.net/","table":"https://qianwenadls-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwendev","name":"qianwendev","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Network/virtualNetworks/QIAN/subnets/default","action":"Allow","state":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Network/virtualNetworks/qianwendev/subnets/default","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"23.45.1.0/24","action":"Allow"},{"value":"23.45.1.1/24","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T03:29:28.0084761Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T03:29:28.0084761Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-12T03:29:27.9459854Z","primaryEndpoints":{"dfs":"https://qianwendev.dfs.core.windows.net/","web":"https://qianwendev.z13.web.core.windows.net/","blob":"https://qianwendev.blob.core.windows.net/","queue":"https://qianwendev.queue.core.windows.net/","table":"https://qianwendev.table.core.windows.net/","file":"https://qianwendev.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwendev-secondary.dfs.core.windows.net/","web":"https://qianwendev-secondary.z13.web.core.windows.net/","blob":"https://qianwendev-secondary.blob.core.windows.net/","queue":"https://qianwendev-secondary.queue.core.windows.net/","table":"https://qianwendev-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwenhpctarget","name":"qianwenhpctarget","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T07:09:20.3073299Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T07:09:20.3073299Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-06T07:09:20.2291899Z","primaryEndpoints":{"dfs":"https://qianwenhpctarget.dfs.core.windows.net/","web":"https://qianwenhpctarget.z13.web.core.windows.net/","blob":"https://qianwenhpctarget.blob.core.windows.net/","queue":"https://qianwenhpctarget.queue.core.windows.net/","table":"https://qianwenhpctarget.table.core.windows.net/","file":"https://qianwenhpctarget.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwenhpctarget-secondary.dfs.core.windows.net/","web":"https://qianwenhpctarget-secondary.z13.web.core.windows.net/","blob":"https://qianwenhpctarget-secondary.blob.core.windows.net/","queue":"https://qianwenhpctarget-secondary.queue.core.windows.net/","table":"https://qianwenhpctarget-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-yueshi/providers/Microsoft.Storage/storageAccounts/yueshi4debug","name":"yueshi4debug","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-14T09:43:28.2246331Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-14T09:43:28.2246331Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-14T09:43:28.1308789Z","primaryEndpoints":{"dfs":"https://yueshi4debug.dfs.core.windows.net/","web":"https://yueshi4debug.z13.web.core.windows.net/","blob":"https://yueshi4debug.blob.core.windows.net/","queue":"https://yueshi4debug.queue.core.windows.net/","table":"https://yueshi4debug.table.core.windows.net/","file":"https://yueshi4debug.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yueshi4debug-secondary.dfs.core.windows.net/","web":"https://yueshi4debug-secondary.z13.web.core.windows.net/","blob":"https://yueshi4debug-secondary.blob.core.windows.net/","queue":"https://yueshi4debug-secondary.queue.core.windows.net/","table":"https://yueshi4debug-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-4xdsq/providers/Microsoft.Storage/storageAccounts/hdicliy5u7daegwvwo5fd4xv","name":"hdicliy5u7daegwvwo5fd4xv","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T09:42:58.1150743Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T09:42:58.1150743Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T09:42:58.0057516Z","primaryEndpoints":{"blob":"https://hdicliy5u7daegwvwo5fd4xv.blob.core.windows.net/","queue":"https://hdicliy5u7daegwvwo5fd4xv.queue.core.windows.net/","table":"https://hdicliy5u7daegwvwo5fd4xv.table.core.windows.net/","file":"https://hdicliy5u7daegwvwo5fd4xv.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-live-test-rg/providers/Microsoft.Storage/storageAccounts/advisortestsa","name":"advisortestsa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T02:39:47.2953520Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T02:39:47.2953520Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T02:39:47.1860196Z","primaryEndpoints":{"dfs":"https://advisortestsa.dfs.core.windows.net/","web":"https://advisortestsa.z22.web.core.windows.net/","blob":"https://advisortestsa.blob.core.windows.net/","queue":"https://advisortestsa.queue.core.windows.net/","table":"https://advisortestsa.table.core.windows.net/","file":"https://advisortestsa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://advisortestsa-secondary.dfs.core.windows.net/","web":"https://advisortestsa-secondary.z22.web.core.windows.net/","blob":"https://advisortestsa-secondary.blob.core.windows.net/","queue":"https://advisortestsa-secondary.queue.core.windows.net/","table":"https://advisortestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azextensionedge","name":"azextensionedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T08:51:57.6947156Z","primaryEndpoints":{"dfs":"https://azextensionedge.dfs.core.windows.net/","web":"https://azextensionedge.z22.web.core.windows.net/","blob":"https://azextensionedge.blob.core.windows.net/","queue":"https://azextensionedge.queue.core.windows.net/","table":"https://azextensionedge.table.core.windows.net/","file":"https://azextensionedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azextensionedge-secondary.dfs.core.windows.net/","web":"https://azextensionedge-secondary.z22.web.core.windows.net/","blob":"https://azextensionedge-secondary.blob.core.windows.net/","queue":"https://azextensionedge-secondary.queue.core.windows.net/","table":"https://azextensionedge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azurecliedge","name":"azurecliedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-13T08:41:36.2389304Z","primaryEndpoints":{"dfs":"https://azurecliedge.dfs.core.windows.net/","web":"https://azurecliedge.z22.web.core.windows.net/","blob":"https://azurecliedge.blob.core.windows.net/","queue":"https://azurecliedge.queue.core.windows.net/","table":"https://azurecliedge.table.core.windows.net/","file":"https://azurecliedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkml665q5cacvdpt3xnqvtxlf6tnizaecikm3p6b3sjztp3xdmho4xfjertdheykac/providers/Microsoft.Storage/storageAccounts/clitest4y7fofzs3ujuabfp7","name":"clitest4y7fofzs3ujuabfp7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:26:37.1324914Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:26:37.1324914Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T03:26:37.0231365Z","primaryEndpoints":{"blob":"https://clitest4y7fofzs3ujuabfp7.blob.core.windows.net/","queue":"https://clitest4y7fofzs3ujuabfp7.queue.core.windows.net/","table":"https://clitest4y7fofzs3ujuabfp7.table.core.windows.net/","file":"https://clitest4y7fofzs3ujuabfp7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg26ny3xcsyfewv3qg3asrpdgrkc64rwrbyonfryslosgoxwmvoz2x4qln7fd2lowsj/providers/Microsoft.Storage/storageAccounts/clitest5ai4souyakgrdg5oz","name":"clitest5ai4souyakgrdg5oz","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:19.7262912Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:19.7262912Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:53:19.6325274Z","primaryEndpoints":{"blob":"https://clitest5ai4souyakgrdg5oz.blob.core.windows.net/","queue":"https://clitest5ai4souyakgrdg5oz.queue.core.windows.net/","table":"https://clitest5ai4souyakgrdg5oz.table.core.windows.net/","file":"https://clitest5ai4souyakgrdg5oz.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxfhzfdpfi7fwsegigabb6s6nk4vy5y6rfsemeycinzwihgr26aij6xbuszvt3u36/providers/Microsoft.Storage/storageAccounts/clitestbilzhmvshjpgny4qh","name":"clitestbilzhmvshjpgny4qh","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.7269372Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.7269372Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T06:42:36.6019381Z","primaryEndpoints":{"blob":"https://clitestbilzhmvshjpgny4qh.blob.core.windows.net/","queue":"https://clitestbilzhmvshjpgny4qh.queue.core.windows.net/","table":"https://clitestbilzhmvshjpgny4qh.table.core.windows.net/","file":"https://clitestbilzhmvshjpgny4qh.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxagbhj6rvluqjj4gowvxygntfp7jr5523gws2echnpzx7nzftezfbael4roce5776/providers/Microsoft.Storage/storageAccounts/clitestddcgzpyoportuvlfg","name":"clitestddcgzpyoportuvlfg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.3675586Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.3675586Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T06:42:36.2738116Z","primaryEndpoints":{"blob":"https://clitestddcgzpyoportuvlfg.blob.core.windows.net/","queue":"https://clitestddcgzpyoportuvlfg.queue.core.windows.net/","table":"https://clitestddcgzpyoportuvlfg.table.core.windows.net/","file":"https://clitestddcgzpyoportuvlfg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwd3hzs2m3p7fuwb7oe2u4bqwmoe5gb7hsaeut4fb5hpiic3b2dmqcv2yspe3xhalw/providers/Microsoft.Storage/storageAccounts/clitestfnjbadoveut3mvvpf","name":"clitestfnjbadoveut3mvvpf","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:35.0726068Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:35.0726068Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:39:34.9788865Z","primaryEndpoints":{"blob":"https://clitestfnjbadoveut3mvvpf.blob.core.windows.net/","queue":"https://clitestfnjbadoveut3mvvpf.queue.core.windows.net/","table":"https://clitestfnjbadoveut3mvvpf.table.core.windows.net/","file":"https://clitestfnjbadoveut3mvvpf.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvg2r7nbxazbiahljziu2uimigqorwz4k4qumvj5peulw2lh3hjx4igwxqgdyrttk/providers/Microsoft.Storage/storageAccounts/clitestlvvl7xg7t3iwdjgbh","name":"clitestlvvl7xg7t3iwdjgbh","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:21.1012972Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:53:21.1012972Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:53:20.9919250Z","primaryEndpoints":{"blob":"https://clitestlvvl7xg7t3iwdjgbh.blob.core.windows.net/","queue":"https://clitestlvvl7xg7t3iwdjgbh.queue.core.windows.net/","table":"https://clitestlvvl7xg7t3iwdjgbh.table.core.windows.net/","file":"https://clitestlvvl7xg7t3iwdjgbh.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguq2mdec4p2qmpeq7dstxgbizeznapfh5cyylo2bi2euyvyokiqnggvqhl3eo5qim2/providers/Microsoft.Storage/storageAccounts/clitestogtknxlag5bb2whvf","name":"clitestogtknxlag5bb2whvf","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:33.6663749Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:39:33.6663749Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:39:33.5882283Z","primaryEndpoints":{"blob":"https://clitestogtknxlag5bb2whvf.blob.core.windows.net/","queue":"https://clitestogtknxlag5bb2whvf.queue.core.windows.net/","table":"https://clitestogtknxlag5bb2whvf.table.core.windows.net/","file":"https://clitestogtknxlag5bb2whvf.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjfczrypeqdy6zjxohpe5d4k5d6nkt2arzlbiqekvuyl5fqino3cbj3byd7d2fiwwy/providers/Microsoft.Storage/storageAccounts/clitestv7f4khn2m2sbya3e7","name":"clitestv7f4khn2m2sbya3e7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.0394335Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T06:42:36.0394335Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T06:42:35.9456810Z","primaryEndpoints":{"blob":"https://clitestv7f4khn2m2sbya3e7.blob.core.windows.net/","queue":"https://clitestv7f4khn2m2sbya3e7.queue.core.windows.net/","table":"https://clitestv7f4khn2m2sbya3e7.table.core.windows.net/","file":"https://clitestv7f4khn2m2sbya3e7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Storage/storageAccounts/clitestvpncnn000002","name":"clitestvpncnn000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T05:21:06.4581879Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T05:21:06.4581879Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-16T05:21:06.3801195Z","primaryEndpoints":{"blob":"https://clitestvpncnn000002.blob.core.windows.net/","queue":"https://clitestvpncnn000002.queue.core.windows.net/","table":"https://clitestvpncnn000002.table.core.windows.net/","file":"https://clitestvpncnn000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vpn_gateway_package_capturefy2mop6bzrqz7hyfzlnc7xxafevlj4l5h5gbgds/providers/Microsoft.Storage/storageAccounts/clitestvpngix7nhukff6lqx","name":"clitestvpngix7nhukff6lqx","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:53:59.5988052Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:53:59.5988052Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:53:59.5050192Z","primaryEndpoints":{"blob":"https://clitestvpngix7nhukff6lqx.blob.core.windows.net/","queue":"https://clitestvpngix7nhukff6lqx.queue.core.windows.net/","table":"https://clitestvpngix7nhukff6lqx.table.core.windows.net/","file":"https://clitestvpngix7nhukff6lqx.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstwu","name":"jlstwu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-12T06:29:22.9138997Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-12T06:29:22.9138997Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-12T06:29:22.8201627Z","primaryEndpoints":{"dfs":"https://jlstwu.dfs.core.windows.net/","web":"https://jlstwu.z22.web.core.windows.net/","blob":"https://jlstwu.blob.core.windows.net/","queue":"https://jlstwu.queue.core.windows.net/","table":"https://jlstwu.table.core.windows.net/","file":"https://jlstwu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu-persist/providers/Microsoft.Storage/storageAccounts/kairu","name":"kairu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-13T07:35:18.9856251Z","primaryEndpoints":{"blob":"https://kairu.blob.core.windows.net/","queue":"https://kairu.queue.core.windows.net/","table":"https://kairu.table.core.windows.net/","file":"https://kairu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu/providers/Microsoft.Storage/storageAccounts/kairu2","name":"kairu2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T02:10:12.5165019Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T02:10:12.5165019Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T02:10:12.4383643Z","primaryEndpoints":{"blob":"https://kairu2.blob.core.windows.net/","queue":"https://kairu2.queue.core.windows.net/","table":"https://kairu2.table.core.windows.net/","file":"https://kairu2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-live-test-rg/providers/Microsoft.Storage/storageAccounts/locksa","name":"locksa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"azureFilesIdentityBasedAuthentication":{"directoryServiceOptions":"None"},"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:24:17.1371655Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:24:17.1371655Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:24:17.0434116Z","primaryEndpoints":{"dfs":"https://locksa.dfs.core.windows.net/","web":"https://locksa.z22.web.core.windows.net/","blob":"https://locksa.blob.core.windows.net/","queue":"https://locksa.queue.core.windows.net/","table":"https://locksa.table.core.windows.net/","file":"https://locksa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://locksa-secondary.dfs.core.windows.net/","web":"https://locksa-secondary.z22.web.core.windows.net/","blob":"https://locksa-secondary.blob.core.windows.net/","queue":"https://locksa-secondary.queue.core.windows.net/","table":"https://locksa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yyc-westus/providers/Microsoft.Storage/storageAccounts/sayyc","name":"sayyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T03:49:33.2385920Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T03:49:33.2385920Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-16T03:49:33.1135932Z","primaryEndpoints":{"dfs":"https://sayyc.dfs.core.windows.net/","web":"https://sayyc.z22.web.core.windows.net/","blob":"https://sayyc.blob.core.windows.net/","queue":"https://sayyc.queue.core.windows.net/","table":"https://sayyc.table.core.windows.net/","file":"https://sayyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sayyc-secondary.dfs.core.windows.net/","web":"https://sayyc-secondary.z22.web.core.windows.net/","blob":"https://sayyc-secondary.blob.core.windows.net/","queue":"https://sayyc-secondary.queue.core.windows.net/","table":"https://sayyc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.Storage/storageAccounts/sharedvmextension","name":"sharedvmextension","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-06T03:37:04.8004229Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-06T03:37:04.8004229Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-06T03:37:04.7066555Z","primaryEndpoints":{"dfs":"https://sharedvmextension.dfs.core.windows.net/","web":"https://sharedvmextension.z22.web.core.windows.net/","blob":"https://sharedvmextension.blob.core.windows.net/","queue":"https://sharedvmextension.queue.core.windows.net/","table":"https://sharedvmextension.table.core.windows.net/","file":"https://sharedvmextension.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sharedvmextension-secondary.dfs.core.windows.net/","web":"https://sharedvmextension-secondary.z22.web.core.windows.net/","blob":"https://sharedvmextension-secondary.blob.core.windows.net/","queue":"https://sharedvmextension-secondary.queue.core.windows.net/","table":"https://sharedvmextension-secondary.table.core.windows.net/"}}},{"identity":{"principalId":"c120e453-0fb4-41f4-b9e7-ac280e27992a","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testcreationtime","name":"testcreationtime","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"keyvaultproperties":{"currentVersionedKeyIdentifier":"https://ysvault.vault.azure.net/keys/testkey/d8d87cea758042e6adf5a4074074143d","lastKeyRotationTimestamp":"2021-04-08T03:14:41.3659071Z","currentVersionedKeyExpirationTimestamp":"1970-01-01T00:00:00.0000000Z","keyvaulturi":"https://ysvault.vault.azure.net/","keyname":"testkey"},"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-08T02:43:57.2406486Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-08T02:43:57.2406486Z"}},"keySource":"Microsoft.Keyvault"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-08T02:43:57.1469079Z","primaryEndpoints":{"dfs":"https://testcreationtime.dfs.core.windows.net/","web":"https://testcreationtime.z22.web.core.windows.net/","blob":"https://testcreationtime.blob.core.windows.net/","queue":"https://testcreationtime.queue.core.windows.net/","table":"https://testcreationtime.table.core.windows.net/","file":"https://testcreationtime.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict2hlt3hjd6ftbhmhgs4sme5ehjdliqmupshzat3mfm4/providers/Microsoft.Storage/storageAccounts/vhdstorage1cc5c55e65c6ba","name":"vhdstorage1cc5c55e65c6ba","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:15:15.5847034Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:15:15.5847034Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T10:15:15.5065645Z","primaryEndpoints":{"blob":"https://vhdstorage1cc5c55e65c6ba.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_from_unmanaged_diskdssdpxnb5ldydequta6oeaw5ageohexhny22dt6pecu3/providers/Microsoft.Storage/storageAccounts/vhdstorage275fba07affab1","name":"vhdstorage275fba07affab1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:11:40.7135540Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:11:40.7135540Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:11:40.6198025Z","primaryEndpoints":{"blob":"https://vhdstorage275fba07affab1.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflicttl5x5jhkyghl4tgcjnc5fzoouxxkiwqaqytbgj2uyi/providers/Microsoft.Storage/storageAccounts/vhdstorage322ec240306b45","name":"vhdstorage322ec240306b45","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:54:55.4766204Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-13T03:54:55.4766204Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-13T03:54:55.3828470Z","primaryEndpoints":{"blob":"https://vhdstorage322ec240306b45.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_with_specialized_unmanaged_disk3n7e7ckolh67wsjyh5we5a3jyl7cxfqv/providers/Microsoft.Storage/storageAccounts/vhdstorage8eeecfe0931d90","name":"vhdstorage8eeecfe0931d90","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:37:40.7074350Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T13:37:40.7074350Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T13:37:40.6136620Z","primaryEndpoints":{"blob":"https://vhdstorage8eeecfe0931d90.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_invoke_actionkcijqrlzz6uanpvfjygacx6adl5p3mytk73vdybjmskrjewyzwlzh/providers/Microsoft.Storage/storageAccounts/vhdstorage90ae149a0f6ea4","name":"vhdstorage90ae149a0f6ea4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T07:12:59.4122686Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T07:12:59.4122686Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T07:12:59.3185183Z","primaryEndpoints":{"blob":"https://vhdstorage90ae149a0f6ea4.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_with_specialized_unmanaged_diskvi24oti7kwtozytlnbd5545nkxjm2vr4/providers/Microsoft.Storage/storageAccounts/vhdstorageb22faf61acadba","name":"vhdstorageb22faf61acadba","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:19:14.5651192Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:19:14.5651192Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T06:19:14.4713686Z","primaryEndpoints":{"blob":"https://vhdstorageb22faf61acadba.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_with_specialized_unmanaged_diskqjsj2uyj7ggeqph7kggnq7xhxqrguxq3/providers/Microsoft.Storage/storageAccounts/vhdstoragecbb56a895c55ad","name":"vhdstoragecbb56a895c55ad","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:13:22.9411349Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T10:13:22.9411349Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T10:13:22.8473784Z","primaryEndpoints":{"blob":"https://vhdstoragecbb56a895c55ad.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_with_specialized_unmanaged_disksg6yqaj5wgtkxwkb4flr3x5c56fq5wf6/providers/Microsoft.Storage/storageAccounts/vhdstoragef5d18edf59d8b9","name":"vhdstoragef5d18edf59d8b9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:13:52.1994651Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T07:13:52.1994651Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T07:13:52.0744621Z","primaryEndpoints":{"blob":"https://vhdstoragef5d18edf59d8b9.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssa","name":"yssa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-27T14:55:33.7123620Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-27T14:55:33.7123620Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-27T14:55:33.6342573Z","primaryEndpoints":{"dfs":"https://yssa.dfs.core.windows.net/","web":"https://yssa.z22.web.core.windows.net/","blob":"https://yssa.blob.core.windows.net/","queue":"https://yssa.queue.core.windows.net/","table":"https://yssa.table.core.windows.net/","file":"https://yssa.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssa-secondary.dfs.core.windows.net/","web":"https://yssa-secondary.z22.web.core.windows.net/","blob":"https://yssa-secondary.blob.core.windows.net/","queue":"https://yssa-secondary.queue.core.windows.net/","table":"https://yssa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaadls","name":"yssaadls","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-11T08:16:02.3188031Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-11T08:16:02.3188031Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-11T08:16:02.2406559Z","primaryEndpoints":{"dfs":"https://yssaadls.dfs.core.windows.net/","web":"https://yssaadls.z22.web.core.windows.net/","blob":"https://yssaadls.blob.core.windows.net/","queue":"https://yssaadls.queue.core.windows.net/","table":"https://yssaadls.table.core.windows.net/","file":"https://yssaadls.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssaadls-secondary.dfs.core.windows.net/","web":"https://yssaadls-secondary.z22.web.core.windows.net/","blob":"https://yssaadls-secondary.blob.core.windows.net/","queue":"https://yssaadls-secondary.queue.core.windows.net/","table":"https://yssaadls-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssatmp","name":"yssatmp","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-04T07:19:47.0265181Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-04T07:19:47.0265181Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-02-04T07:19:46.9171303Z","primaryEndpoints":{"dfs":"https://yssatmp.dfs.core.windows.net/","blob":"https://yssatmp.blob.core.windows.net/","table":"https://yssatmp.table.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssatmp-secondary.dfs.core.windows.net/","blob":"https://yssatmp-secondary.blob.core.windows.net/","table":"https://yssatmp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtestss","name":"zuhtestss","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T03:15:16.1506479Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T03:15:16.1506479Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T03:15:16.0412704Z","primaryEndpoints":{"blob":"https://zuhtestss.blob.core.windows.net/","queue":"https://zuhtestss.queue.core.windows.net/","table":"https://zuhtestss.table.core.windows.net/","file":"https://zuhtestss.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zuhtestss-secondary.blob.core.windows.net/","queue":"https://zuhtestss-secondary.queue.core.windows.net/","table":"https://zuhtestss-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/azuresdktest","name":"azuresdktest","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-12T06:32:07.0689199Z","primaryEndpoints":{"dfs":"https://azuresdktest.dfs.core.windows.net/","web":"https://azuresdktest.z7.web.core.windows.net/","blob":"https://azuresdktest.blob.core.windows.net/","queue":"https://azuresdktest.queue.core.windows.net/","table":"https://azuresdktest.table.core.windows.net/","file":"https://azuresdktest.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.Storage/storageAccounts/clitesterlb3npa6l4s4denq","name":"clitesterlb3npa6l4s4denq","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:29:02.4991035Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:29:02.4991035Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-16T02:29:02.4209532Z","primaryEndpoints":{"blob":"https://clitesterlb3npa6l4s4denq.blob.core.windows.net/","queue":"https://clitesterlb3npa6l4s4denq.queue.core.windows.net/","table":"https://clitesterlb3npa6l4s4denq.table.core.windows.net/","file":"https://clitesterlb3npa6l4s4denq.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524","name":"cs1100320004dd89524","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-26T05:48:15.6545059Z","primaryEndpoints":{"dfs":"https://cs1100320004dd89524.dfs.core.windows.net/","web":"https://cs1100320004dd89524.z23.web.core.windows.net/","blob":"https://cs1100320004dd89524.blob.core.windows.net/","queue":"https://cs1100320004dd89524.queue.core.windows.net/","table":"https://cs1100320004dd89524.table.core.windows.net/","file":"https://cs1100320004dd89524.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-25T03:24:00.9490326Z","primaryEndpoints":{"dfs":"https://cs1100320007de01867.dfs.core.windows.net/","web":"https://cs1100320007de01867.z23.web.core.windows.net/","blob":"https://cs1100320007de01867.blob.core.windows.net/","queue":"https://cs1100320007de01867.queue.core.windows.net/","table":"https://cs1100320007de01867.table.core.windows.net/","file":"https://cs1100320007de01867.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc","name":"cs1100320008debd5bc","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-17T07:12:44.0351358Z","primaryEndpoints":{"dfs":"https://cs1100320008debd5bc.dfs.core.windows.net/","web":"https://cs1100320008debd5bc.z23.web.core.windows.net/","blob":"https://cs1100320008debd5bc.blob.core.windows.net/","queue":"https://cs1100320008debd5bc.queue.core.windows.net/","table":"https://cs1100320008debd5bc.table.core.windows.net/","file":"https://cs1100320008debd5bc.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771","name":"cs11003200092fe0771","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-23T07:08:51.0811120Z","primaryEndpoints":{"dfs":"https://cs11003200092fe0771.dfs.core.windows.net/","web":"https://cs11003200092fe0771.z23.web.core.windows.net/","blob":"https://cs11003200092fe0771.blob.core.windows.net/","queue":"https://cs11003200092fe0771.queue.core.windows.net/","table":"https://cs11003200092fe0771.table.core.windows.net/","file":"https://cs11003200092fe0771.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71","name":"cs110032000c31bae71","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-15T06:39:35.4180004Z","primaryEndpoints":{"dfs":"https://cs110032000c31bae71.dfs.core.windows.net/","web":"https://cs110032000c31bae71.z23.web.core.windows.net/","blob":"https://cs110032000c31bae71.blob.core.windows.net/","queue":"https://cs110032000c31bae71.queue.core.windows.net/","table":"https://cs110032000c31bae71.table.core.windows.net/","file":"https://cs110032000c31bae71.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-22T02:06:18.4217109Z","primaryEndpoints":{"dfs":"https://cs110032000ca62af00.dfs.core.windows.net/","web":"https://cs110032000ca62af00.z23.web.core.windows.net/","blob":"https://cs110032000ca62af00.blob.core.windows.net/","queue":"https://cs110032000ca62af00.queue.core.windows.net/","table":"https://cs110032000ca62af00.table.core.windows.net/","file":"https://cs110032000ca62af00.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47","name":"cs11003200127365c47","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-25T03:10:52.5318146Z","primaryEndpoints":{"dfs":"https://cs11003200127365c47.dfs.core.windows.net/","web":"https://cs11003200127365c47.z23.web.core.windows.net/","blob":"https://cs11003200127365c47.blob.core.windows.net/","queue":"https://cs11003200127365c47.queue.core.windows.net/","table":"https://cs11003200127365c47.table.core.windows.net/","file":"https://cs11003200127365c47.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452","name":"cs1100320012c36c452","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T08:04:25.5198295Z","primaryEndpoints":{"dfs":"https://cs1100320012c36c452.dfs.core.windows.net/","web":"https://cs1100320012c36c452.z23.web.core.windows.net/","blob":"https://cs1100320012c36c452.blob.core.windows.net/","queue":"https://cs1100320012c36c452.queue.core.windows.net/","table":"https://cs1100320012c36c452.table.core.windows.net/","file":"https://cs1100320012c36c452.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst","name":"jlst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-31T03:05:24.8023719Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-31T03:05:24.8023719Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-12-31T03:05:24.7086186Z","primaryEndpoints":{"dfs":"https://jlst.dfs.core.windows.net/","web":"https://jlst.z23.web.core.windows.net/","blob":"https://jlst.blob.core.windows.net/","queue":"https://jlst.queue.core.windows.net/","table":"https://jlst.table.core.windows.net/","file":"https://jlst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs","name":"jlstcs","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-13T06:39:02.4278678Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-13T06:39:02.4278678Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-13T06:39:02.3497160Z","primaryEndpoints":{"dfs":"https://jlstcs.dfs.core.windows.net/","web":"https://jlstcs.z23.web.core.windows.net/","blob":"https://jlstcs.blob.core.windows.net/","queue":"https://jlstcs.queue.core.windows.net/","table":"https://jlstcs.table.core.windows.net/","file":"https://jlstcs.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag","name":"qianwensdiag","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T07:17:09.1138103Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T07:17:09.1138103Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T07:17:09.0514178Z","primaryEndpoints":{"blob":"https://qianwensdiag.blob.core.windows.net/","queue":"https://qianwensdiag.queue.core.windows.net/","table":"https://qianwensdiag.table.core.windows.net/","file":"https://qianwensdiag.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/extmigrate","name":"extmigrate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T08:26:10.5858998Z","primaryEndpoints":{"blob":"https://extmigrate.blob.core.windows.net/","queue":"https://extmigrate.queue.core.windows.net/","table":"https://extmigrate.table.core.windows.net/","file":"https://extmigrate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://extmigrate-secondary.blob.core.windows.net/","queue":"https://extmigrate-secondary.queue.core.windows.net/","table":"https://extmigrate-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengtestsa","name":"fengtestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:10:28.6266623Z","primaryEndpoints":{"dfs":"https://fengtestsa.dfs.core.windows.net/","web":"https://fengtestsa.z19.web.core.windows.net/","blob":"https://fengtestsa.blob.core.windows.net/","queue":"https://fengtestsa.queue.core.windows.net/","table":"https://fengtestsa.table.core.windows.net/","file":"https://fengtestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengtestsa-secondary.dfs.core.windows.net/","web":"https://fengtestsa-secondary.z19.web.core.windows.net/","blob":"https://fengtestsa-secondary.blob.core.windows.net/","queue":"https://fengtestsa-secondary.queue.core.windows.net/","table":"https://fengtestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907/providers/Microsoft.Storage/storageAccounts/6ynst8ytvcms52eviy9cme3e","name":"6ynst8ytvcms52eviy9cme3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"createdby":"azureimagebuilder","magicvalue":"0d819542a3774a2a8709401a7cd09eb8"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-10T11:43:29.9651518Z","primaryEndpoints":{"blob":"https://6ynst8ytvcms52eviy9cme3e.blob.core.windows.net/","queue":"https://6ynst8ytvcms52eviy9cme3e.queue.core.windows.net/","table":"https://6ynst8ytvcms52eviy9cme3e.table.core.windows.net/","file":"https://6ynst8ytvcms52eviy9cme3e.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-logreplay3j4ivasbsry/providers/Microsoft.Storage/storageAccounts/logreplay3tsvbsxzhww4a2t","name":"logreplay3tsvbsxzhww4a2t","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:38:10.2570226Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:38:10.2570226Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-16T02:38:10.1789112Z","primaryEndpoints":{"dfs":"https://logreplay3tsvbsxzhww4a2t.dfs.core.windows.net/","web":"https://logreplay3tsvbsxzhww4a2t.z4.web.core.windows.net/","blob":"https://logreplay3tsvbsxzhww4a2t.blob.core.windows.net/","queue":"https://logreplay3tsvbsxzhww4a2t.queue.core.windows.net/","table":"https://logreplay3tsvbsxzhww4a2t.table.core.windows.net/","file":"https://logreplay3tsvbsxzhww4a2t.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-logreplay7gep5ibopcy/providers/Microsoft.Storage/storageAccounts/logreplayf6wgz54rxj2ases","name":"logreplayf6wgz54rxj2ases","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:24:34.9907400Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T02:24:34.9907400Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-16T02:24:34.9438356Z","primaryEndpoints":{"dfs":"https://logreplayf6wgz54rxj2ases.dfs.core.windows.net/","web":"https://logreplayf6wgz54rxj2ases.z4.web.core.windows.net/","blob":"https://logreplayf6wgz54rxj2ases.blob.core.windows.net/","queue":"https://logreplayf6wgz54rxj2ases.queue.core.windows.net/","table":"https://logreplayf6wgz54rxj2ases.table.core.windows.net/","file":"https://logreplayf6wgz54rxj2ases.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-logreplayfpuuxvh6mjd/providers/Microsoft.Storage/storageAccounts/logreplaykks6vblal5aswvg","name":"logreplaykks6vblal5aswvg","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T03:17:13.7008911Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-16T03:17:13.7008911Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-16T03:17:13.6227318Z","primaryEndpoints":{"dfs":"https://logreplaykks6vblal5aswvg.dfs.core.windows.net/","web":"https://logreplaykks6vblal5aswvg.z4.web.core.windows.net/","blob":"https://logreplaykks6vblal5aswvg.blob.core.windows.net/","queue":"https://logreplaykks6vblal5aswvg.queue.core.windows.net/","table":"https://logreplaykks6vblal5aswvg.table.core.windows.net/","file":"https://logreplaykks6vblal5aswvg.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaeuap","name":"yssaeuap","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-10T03:37:15.2571646Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-10T03:37:15.2571646Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-10T03:37:15.1871764Z","primaryEndpoints":{"dfs":"https://yssaeuap.dfs.core.windows.net/","web":"https://yssaeuap.z3.web.core.windows.net/","blob":"https://yssaeuap.blob.core.windows.net/","queue":"https://yssaeuap.queue.core.windows.net/","table":"https://yssaeuap.table.core.windows.net/","file":"https://yssaeuap.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssaeuap-secondary.dfs.core.windows.net/","web":"https://yssaeuap-secondary.z3.web.core.windows.net/","blob":"https://yssaeuap-secondary.blob.core.windows.net/","queue":"https://yssaeuap-secondary.queue.core.windows.net/","table":"https://yssaeuap-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssanew","name":"yssanew","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-06T09:18:53.7220848Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-06T09:18:53.7220848Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-06T09:18:53.6620997Z","primaryEndpoints":{"dfs":"https://yssanew.dfs.core.windows.net/","web":"https://yssanew.z3.web.core.windows.net/","blob":"https://yssanew.blob.core.windows.net/","queue":"https://yssanew.queue.core.windows.net/","table":"https://yssanew.table.core.windows.net/","file":"https://yssanew.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yssanew-secondary.dfs.core.windows.net/","web":"https://yssanew-secondary.z3.web.core.windows.net/","blob":"https://yssanew-secondary.blob.core.windows.net/","queue":"https://yssanew-secondary.queue.core.windows.net/","table":"https://yssanew-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhdefault","name":"zuhdefault","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T09:02:47.5887943Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T09:02:47.5887943Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T09:02:47.5187780Z","primaryEndpoints":{"dfs":"https://zuhdefault.dfs.core.windows.net/","web":"https://zuhdefault.z3.web.core.windows.net/","blob":"https://zuhdefault.blob.core.windows.net/","queue":"https://zuhdefault.queue.core.windows.net/","table":"https://zuhdefault.table.core.windows.net/","file":"https://zuhdefault.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhdefault-secondary.dfs.core.windows.net/","web":"https://zuhdefault-secondary.z3.web.core.windows.net/","blob":"https://zuhdefault-secondary.blob.core.windows.net/","queue":"https://zuhdefault-secondary.queue.core.windows.net/","table":"https://zuhdefault-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtest","name":"zuhtest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"identity":{"type":"ManagedServiceIdentity","userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zuhid"},"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Creating","creationTime":"2021-01-14T07:13:45.0603798Z","primaryEndpoints":{"dfs":"https://zuhtest.dfs.core.windows.net/","web":"https://zuhtest.z3.web.core.windows.net/","blob":"https://zuhtest.blob.core.windows.net/","queue":"https://zuhtest.queue.core.windows.net/","table":"https://zuhtest.table.core.windows.net/","file":"https://zuhtest.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhtest-secondary.dfs.core.windows.net/","web":"https://zuhtest-secondary.z3.web.core.windows.net/","blob":"https://zuhtest-secondary.blob.core.windows.net/","queue":"https://zuhtest-secondary.queue.core.windows.net/","table":"https://zuhtest-secondary.table.core.windows.net/"}}}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '149295'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:21:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-original-request-ids:
+ - 9ff2db33-8af4-4f70-99c2-3f8a12f56a8c
+ - 0f3df9d2-6edf-43bc-9219-7695e94b8cc9
+ - 6e44b8f1-bae7-41a8-98fb-80b286b0dab2
+ - 7da39151-5bdf-4a5c-9749-d929694bb6f1
+ - d4d23340-4b0e-4d68-bc54-8ddf8cf72e6d
+ - 4532a777-8979-49b4-b421-18ca94560feb
+ - 9a97548c-7291-4538-adf9-39bcff43548e
+ - ba6c4ebb-dc17-4128-a5ab-ccf5d0464e09
+ - e4034967-fad1-4aa7-a0e9-d9a47839eada
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob generate-sas
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -n --account-name -c --permissions --expiry -o
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Storage/storageAccounts/clitestvpncnn000002/listKeys?api-version=2021-01-01&$expand=kerb
+ response:
+ body:
+ string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '288'
+ content-type:
+ - application/json
+ date:
+ - Fri, 16 Apr 2021 05:21:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-Azure-Storage-Resource-Provider/1.0,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-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -13,15 +251,15 @@ interactions:
ParameterSetName:
- -g -n --address-prefix --subnet-name --subnet-prefix
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T07:15:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-16T05:20:55Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +268,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:15:46 GMT
+ - Fri, 16 Apr 2021 05:21:42 GMT
expires:
- '-1'
pragma:
@@ -64,21 +302,21 @@ interactions:
ParameterSetName:
- -g -n --address-prefix --subnet-name --subnet-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"7be49fb4-7cb8-4f7b-8286-eb496e59004a\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"d9dee8bc-e2be-4e32-b5a1-9933f247c2eb\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"4ac65c36-f2ec-44c3-bade-ccff0c7f4990\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"c33c01a5-57b0-4fea-9173-5cf6d245d714\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.21.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"7be49fb4-7cb8-4f7b-8286-eb496e59004a\\\"\",\r\n
+ \ \"etag\": \"W/\\\"d9dee8bc-e2be-4e32-b5a1-9933f247c2eb\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"addressPrefix\": \"10.21.255.0/27\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -89,7 +327,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/198520a6-b438-45b1-8821-2a50709ca8fb?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f4e339e6-fa89-410c-bfdc-0c05668dbbee?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -97,7 +335,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:15:51 GMT
+ - Fri, 16 Apr 2021 05:21:48 GMT
expires:
- '-1'
pragma:
@@ -110,9 +348,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7491ec91-6aef-45eb-897e-b07668fd5545
+ - 5d2e5d2b-3c60-42b5-8ef5-0ccde9cec2e7
x-ms-ratelimit-remaining-subscription-writes:
- - '1170'
+ - '1199'
status:
code: 201
message: Created
@@ -130,9 +368,9 @@ interactions:
ParameterSetName:
- -g -n --address-prefix --subnet-name --subnet-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/198520a6-b438-45b1-8821-2a50709ca8fb?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f4e339e6-fa89-410c-bfdc-0c05668dbbee?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -144,7 +382,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:15:55 GMT
+ - Fri, 16 Apr 2021 05:21:52 GMT
expires:
- '-1'
pragma:
@@ -161,7 +399,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 78d9c1da-3783-4f46-921f-14557c9ae0c9
+ - 6efb884a-e907-4edf-a6d0-78068e297ea4
status:
code: 200
message: OK
@@ -179,21 +417,21 @@ interactions:
ParameterSetName:
- -g -n --address-prefix --subnet-name --subnet-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
- \ \"etag\": \"W/\\\"4cbc20ff-0035-49e3-bfa7-733ae8eed463\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"c140395a-f0c2-4fe7-9957-41ab07c4f315\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"4ac65c36-f2ec-44c3-bade-ccff0c7f4990\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"c33c01a5-57b0-4fea-9173-5cf6d245d714\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.21.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"4cbc20ff-0035-49e3-bfa7-733ae8eed463\\\"\",\r\n
+ \ \"etag\": \"W/\\\"c140395a-f0c2-4fe7-9957-41ab07c4f315\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.21.255.0/27\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -208,9 +446,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:15:56 GMT
+ - Fri, 16 Apr 2021 05:21:52 GMT
etag:
- - W/"4cbc20ff-0035-49e3-bfa7-733ae8eed463"
+ - W/"c140395a-f0c2-4fe7-9957-41ab07c4f315"
expires:
- '-1'
pragma:
@@ -227,7 +465,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a7ee390b-56b4-49e2-ba29-2d18a382655c
+ - 21687925-4f85-4cbb-9d0f-08f06888f539
status:
code: 200
message: OK
@@ -245,15 +483,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T07:15:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-16T05:20:55Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -262,7 +500,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:15:56 GMT
+ - Fri, 16 Apr 2021 05:22:44 GMT
expires:
- '-1'
pragma:
@@ -295,15 +533,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1ip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\",\r\n
- \ \"etag\": \"W/\\\"d917320e-c29f-4947-bd2e-751ab7d607b4\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"bb5fc9e2-82a5-4224-b4fa-df0262731436\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"a86e8bd2-8eed-4f04-8ab4-0d78bc24401b\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"742a71d0-71dd-4f3f-b4d4-943b2a291967\",\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
@@ -312,7 +550,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/771a135e-6dbb-45f6-9f3c-ea63429ac114?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6f9a8492-6fab-49ab-933d-c3392e9c5a36?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -320,7 +558,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:01 GMT
+ - Fri, 16 Apr 2021 05:22:49 GMT
expires:
- '-1'
pragma:
@@ -333,9 +571,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a1bd6e92-bb4a-4031-baf5-7045ed4ee0ea
+ - 749eb75d-c5f2-4e46-af5c-b2b1cf07ce5b
x-ms-ratelimit-remaining-subscription-writes:
- - '1174'
+ - '1195'
status:
code: 201
message: Created
@@ -353,9 +591,9 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/771a135e-6dbb-45f6-9f3c-ea63429ac114?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6f9a8492-6fab-49ab-933d-c3392e9c5a36?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -367,7 +605,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:02 GMT
+ - Fri, 16 Apr 2021 05:22:50 GMT
expires:
- '-1'
pragma:
@@ -384,7 +622,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e345e9ab-8f7c-428a-b52c-5b499629d83a
+ - 4b06a792-7236-4a8e-a85c-642866251458
status:
code: 200
message: OK
@@ -402,15 +640,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1ip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\",\r\n
- \ \"etag\": \"W/\\\"3ff8aa2e-4bea-4bf3-9155-f0b74015237a\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"98f0180a-e036-42b2-83f9-cf96b71e0f89\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"a86e8bd2-8eed-4f04-8ab4-0d78bc24401b\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"742a71d0-71dd-4f3f-b4d4-943b2a291967\",\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
@@ -423,9 +661,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:02 GMT
+ - Fri, 16 Apr 2021 05:22:50 GMT
etag:
- - W/"3ff8aa2e-4bea-4bf3-9155-f0b74015237a"
+ - W/"98f0180a-e036-42b2-83f9-cf96b71e0f89"
expires:
- '-1'
pragma:
@@ -442,7 +680,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 101ce510-e745-4e12-b109-6d266f5c4b8d
+ - b847e548-a6ef-490b-94fe-188d50bfe6a5
status:
code: 200
message: OK
@@ -460,15 +698,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T07:15:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-16T05:20:55Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -477,7 +715,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:03 GMT
+ - Fri, 16 Apr 2021 05:22:51 GMT
expires:
- '-1'
pragma:
@@ -510,15 +748,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1ip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\",\r\n
- \ \"etag\": \"W/\\\"69f489ca-2ddd-4279-9117-7fa32e7bfd64\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"02941772-b2e0-409f-81a8-a49a69e34a8a\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"ca8a5c74-4d07-4062-bd60-1abf9048c466\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"d7710729-a963-4464-b5db-7dce62818b56\",\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
@@ -527,7 +765,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3cd4329d-b6bd-4028-aa96-47ac72432390?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d9d4e75c-ff7b-40d6-a2fb-a948bc5922aa?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -535,7 +773,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:06 GMT
+ - Fri, 16 Apr 2021 05:22:58 GMT
expires:
- '-1'
pragma:
@@ -548,9 +786,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - dce0cc51-31a8-454b-af02-d2c38ea93e08
+ - 23941e1d-db26-4703-97eb-cd600562ad51
x-ms-ratelimit-remaining-subscription-writes:
- - '1173'
+ - '1199'
status:
code: 201
message: Created
@@ -568,9 +806,9 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3cd4329d-b6bd-4028-aa96-47ac72432390?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d9d4e75c-ff7b-40d6-a2fb-a948bc5922aa?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -582,7 +820,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:08 GMT
+ - Fri, 16 Apr 2021 05:23:00 GMT
expires:
- '-1'
pragma:
@@ -599,7 +837,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 74f0d40d-7cd7-463b-8f34-5e13c52df8a2
+ - 8bc6060f-6b49-46b8-a354-9e3f1742c1f7
status:
code: 200
message: OK
@@ -617,15 +855,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw1ip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\",\r\n
- \ \"etag\": \"W/\\\"89b10845-d448-4043-9ffc-b1581cb52552\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"44da6ee0-c37e-4d55-ae45-6e731274536b\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"ca8a5c74-4d07-4062-bd60-1abf9048c466\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"d7710729-a963-4464-b5db-7dce62818b56\",\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
@@ -638,9 +876,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:08 GMT
+ - Fri, 16 Apr 2021 05:23:00 GMT
etag:
- - W/"89b10845-d448-4043-9ffc-b1581cb52552"
+ - W/"44da6ee0-c37e-4d55-ae45-6e731274536b"
expires:
- '-1'
pragma:
@@ -657,7 +895,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - ad8f69a7-da5f-435c-bb6f-0cbfefa13648
+ - 8b2e3507-061e-41df-8dea-c2e21fde4bac
status:
code: 200
message: OK
@@ -675,15 +913,15 @@ interactions:
ParameterSetName:
- -g -n --address-prefix --subnet-name --subnet-prefix
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T07:15:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-16T05:20:55Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -692,7 +930,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:08 GMT
+ - Fri, 16 Apr 2021 05:23:01 GMT
expires:
- '-1'
pragma:
@@ -726,21 +964,21 @@ interactions:
ParameterSetName:
- -g -n --address-prefix --subnet-name --subnet-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2\",\r\n
- \ \"etag\": \"W/\\\"ff2fe61e-2922-4065-bfd0-e721241e52ce\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"322dba42-c58e-4ab1-93c8-b2d0ad0e8f4b\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"06e26ea8-37b0-4a09-b83b-74779f438bff\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"22221731-3d9f-464f-bb43-2728779565d4\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.22.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"ff2fe61e-2922-4065-bfd0-e721241e52ce\\\"\",\r\n
+ \ \"etag\": \"W/\\\"322dba42-c58e-4ab1-93c8-b2d0ad0e8f4b\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"addressPrefix\": \"10.22.255.0/27\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -751,7 +989,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1af14510-d21f-4e94-8592-83a9a1e9ebe3?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f727568a-53f9-4e3e-8d84-fd7a09dd997e?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -759,7 +997,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:14 GMT
+ - Fri, 16 Apr 2021 05:23:08 GMT
expires:
- '-1'
pragma:
@@ -772,9 +1010,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 43b0647c-9aaa-4c5e-89e1-f590844f3f3b
+ - 63f5461e-0854-4fa7-b368-e8ee0bf64edd
x-ms-ratelimit-remaining-subscription-writes:
- - '1175'
+ - '1199'
status:
code: 201
message: Created
@@ -792,9 +1030,9 @@ interactions:
ParameterSetName:
- -g -n --address-prefix --subnet-name --subnet-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1af14510-d21f-4e94-8592-83a9a1e9ebe3?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f727568a-53f9-4e3e-8d84-fd7a09dd997e?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -806,7 +1044,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:18 GMT
+ - Fri, 16 Apr 2021 05:23:11 GMT
expires:
- '-1'
pragma:
@@ -823,7 +1061,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8e20043f-82b7-4757-9b72-b76bcdacb839
+ - 97708583-8cad-4344-91b8-ebd193e3f3ff
status:
code: 200
message: OK
@@ -841,21 +1079,21 @@ interactions:
ParameterSetName:
- -g -n --address-prefix --subnet-name --subnet-prefix
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2\",\r\n
- \ \"etag\": \"W/\\\"023d9411-b13a-43b6-a8be-9500b50ba7e7\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"6d3963d3-9298-4346-89cb-c0735d09d288\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"06e26ea8-37b0-4a09-b83b-74779f438bff\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"22221731-3d9f-464f-bb43-2728779565d4\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.22.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\",\r\n
- \ \"etag\": \"W/\\\"023d9411-b13a-43b6-a8be-9500b50ba7e7\\\"\",\r\n
+ \ \"etag\": \"W/\\\"6d3963d3-9298-4346-89cb-c0735d09d288\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.22.255.0/27\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -870,9 +1108,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:18 GMT
+ - Fri, 16 Apr 2021 05:23:12 GMT
etag:
- - W/"023d9411-b13a-43b6-a8be-9500b50ba7e7"
+ - W/"6d3963d3-9298-4346-89cb-c0735d09d288"
expires:
- '-1'
pragma:
@@ -889,7 +1127,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5464886b-8f7b-457d-be7d-3adf5269a337
+ - 068e542d-3ffe-4fd7-8631-f6a8b937701e
status:
code: 200
message: OK
@@ -907,15 +1145,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T07:15:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-16T05:20:55Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -924,7 +1162,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:19 GMT
+ - Fri, 16 Apr 2021 05:23:12 GMT
expires:
- '-1'
pragma:
@@ -957,15 +1195,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw2ip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\",\r\n
- \ \"etag\": \"W/\\\"37c217d2-f94e-4007-b3af-99e9154cbc6a\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"f24e2fc6-15ef-4825-93fe-56ff837584bd\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"ba1149a4-91e2-4669-8d21-5b9122215aa3\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"6b1cd893-61e3-4545-b4c4-cb199901600f\",\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
@@ -974,7 +1212,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4fd4b3d-17de-4130-ba4c-f1179ba0542b?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/40a68138-2615-47ae-8a64-0912baec8062?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -982,7 +1220,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:24 GMT
+ - Fri, 16 Apr 2021 05:23:18 GMT
expires:
- '-1'
pragma:
@@ -995,9 +1233,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f7a31396-bd6d-4768-b02f-86e0c0c60d45
+ - db0ab2f7-e7f3-4655-8a95-a48ff9da8445
x-ms-ratelimit-remaining-subscription-writes:
- - '1178'
+ - '1199'
status:
code: 201
message: Created
@@ -1015,9 +1253,9 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c4fd4b3d-17de-4130-ba4c-f1179ba0542b?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/40a68138-2615-47ae-8a64-0912baec8062?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -1029,7 +1267,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:26 GMT
+ - Fri, 16 Apr 2021 05:23:20 GMT
expires:
- '-1'
pragma:
@@ -1046,7 +1284,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c3cf20d7-eff1-4ee5-8b60-95a76ed402e4
+ - 2e2288b6-a009-4333-9e9f-4d0b91e8fb6f
status:
code: 200
message: OK
@@ -1064,15 +1302,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw2ip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\",\r\n
- \ \"etag\": \"W/\\\"09bdd685-4610-4138-9a49-74c8cf1be80c\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"74f43cf8-6e39-49ca-8fa2-b7646bf7e1f9\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"ba1149a4-91e2-4669-8d21-5b9122215aa3\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"6b1cd893-61e3-4545-b4c4-cb199901600f\",\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
@@ -1085,9 +1323,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:27 GMT
+ - Fri, 16 Apr 2021 05:23:20 GMT
etag:
- - W/"09bdd685-4610-4138-9a49-74c8cf1be80c"
+ - W/"74f43cf8-6e39-49ca-8fa2-b7646bf7e1f9"
expires:
- '-1'
pragma:
@@ -1104,7 +1342,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 464d8e6e-df93-437b-b6c7-a5dfde3d9155
+ - f6e9c7d0-925a-49bc-86e8-fdffa2e1bdf0
status:
code: 200
message: OK
@@ -1122,15 +1360,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T07:15:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-16T05:20:55Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1139,7 +1377,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:27 GMT
+ - Fri, 16 Apr 2021 05:23:21 GMT
expires:
- '-1'
pragma:
@@ -1172,15 +1410,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw2ip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\",\r\n
- \ \"etag\": \"W/\\\"e76e016a-2eff-41c6-a2a8-a95b685cd019\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"c16fe2bb-fa3d-4160-b8a1-92e6b99fb971\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"a05db761-92fc-4ac3-95d0-81fc2afb5baa\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"988681c1-4af8-45db-a297-99bdb1cb54a0\",\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
@@ -1189,7 +1427,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/95bdc4ec-c41c-4bac-81fb-83dbe5a1d21f?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2c1d950-5ccc-40a8-975f-3ab3ee6074e8?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -1197,7 +1435,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:33 GMT
+ - Fri, 16 Apr 2021 05:23:25 GMT
expires:
- '-1'
pragma:
@@ -1210,9 +1448,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c89b20c7-6cb5-4e52-a6ea-546894a3589d
+ - 868bc530-2ce4-4bbe-9add-9fc295b8b6b6
x-ms-ratelimit-remaining-subscription-writes:
- - '1179'
+ - '1198'
status:
code: 201
message: Created
@@ -1230,9 +1468,9 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/95bdc4ec-c41c-4bac-81fb-83dbe5a1d21f?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2c1d950-5ccc-40a8-975f-3ab3ee6074e8?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -1244,7 +1482,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:34 GMT
+ - Fri, 16 Apr 2021 05:23:26 GMT
expires:
- '-1'
pragma:
@@ -1261,7 +1499,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 58add819-4f76-40d0-a755-f1f5321508c0
+ - 80db7023-cb90-414c-a5b6-5c81062e7730
status:
code: 200
message: OK
@@ -1279,15 +1517,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"gw2ip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\",\r\n
- \ \"etag\": \"W/\\\"6241409c-7fd0-4dee-bed9-f09fb2a7091c\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"c5307dec-614e-4315-a845-6d94aac27307\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"a05db761-92fc-4ac3-95d0-81fc2afb5baa\",\r\n \"publicIPAddressVersion\":
+ \ \"resourceGuid\": \"988681c1-4af8-45db-a297-99bdb1cb54a0\",\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
@@ -1300,9 +1538,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:35 GMT
+ - Fri, 16 Apr 2021 05:23:26 GMT
etag:
- - W/"6241409c-7fd0-4dee-bed9-f09fb2a7091c"
+ - W/"c5307dec-614e-4315-a845-6d94aac27307"
expires:
- '-1'
pragma:
@@ -1319,7 +1557,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 216f2abb-6e04-4834-8f47-9c705b777ed6
+ - 7c6deb99-d328-4f80-867f-58f1d736e550
status:
code: 200
message: OK
@@ -1337,15 +1575,15 @@ interactions:
ParameterSetName:
- -g -n --vnet --sku --asn --public-ip-addresses --bgp-peering-address --no-wait
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T07:15:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-16T05:20:55Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1354,7 +1592,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:35 GMT
+ - Fri, 16 Apr 2021 05:23:27 GMT
expires:
- '-1'
pragma:
@@ -1394,20 +1632,20 @@ interactions:
ParameterSetName:
- -g -n --vnet --sku --asn --public-ip-addresses --bgp-peering-address --no-wait
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1415,7 +1653,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1442,7 +1680,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c3a1af0c-e8a6-438f-9901-b0c7d83327e0?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d28f87f2-df84-4cf2-9cc9-45dd7f609540?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -1450,7 +1688,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:39 GMT
+ - Fri, 16 Apr 2021 05:23:34 GMT
expires:
- '-1'
pragma:
@@ -1463,9 +1701,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1189a5af-aa93-4144-9614-e95a3b693373
+ - 6e7ed1ef-5587-4ca1-81a0-de2a80ab5bc7
x-ms-ratelimit-remaining-subscription-writes:
- - '1194'
+ - '1198'
status:
code: 201
message: Created
@@ -1483,15 +1721,15 @@ interactions:
ParameterSetName:
- -g -n --vnet --sku --asn --public-ip-addresses --bgp-peering-address --no-wait
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T07:15:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-16T05:20:55Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1500,7 +1738,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:39 GMT
+ - Fri, 16 Apr 2021 05:23:34 GMT
expires:
- '-1'
pragma:
@@ -1540,20 +1778,20 @@ interactions:
ParameterSetName:
- -g -n --vnet --sku --asn --public-ip-addresses --bgp-peering-address --no-wait
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"8e023e5e-7048-4702-938a-a0dc0d7ee1d7\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"dcdc4054-dbbb-4445-ae4c-1d0d816fd8df\",\r\n \"packetCaptureDiagnosticState\":
+ \"9752b4d5-3407-44d9-bc8a-97c04ca6686d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
+ \ \"etag\": \"W/\\\"8e023e5e-7048-4702-938a-a0dc0d7ee1d7\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1561,7 +1799,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
+ \ \"etag\": \"W/\\\"8e023e5e-7048-4702-938a-a0dc0d7ee1d7\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1588,7 +1826,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb30e828-a043-47fd-93ca-9e7b2c8ecdb2?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/550b115f-b58b-491f-b334-8e062b3501be?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -1596,7 +1834,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:45 GMT
+ - Fri, 16 Apr 2021 05:23:40 GMT
expires:
- '-1'
pragma:
@@ -1609,9 +1847,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 0f7fdd8c-a391-451f-a681-883d67eee37e
+ - e67bd70d-d541-4cc9-8d41-e62386a56a36
x-ms-ratelimit-remaining-subscription-writes:
- - '1164'
+ - '1198'
status:
code: 201
message: Created
@@ -1629,20 +1867,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1650,7 +1888,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1677,7 +1915,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:16:45 GMT
+ - Fri, 16 Apr 2021 05:23:42 GMT
expires:
- '-1'
pragma:
@@ -1694,7 +1932,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - d96718b8-00c0-4ad6-ae86-f64f0a39c4a1
+ - 3b2a7e02-5658-4db7-a8e2-509398d696f3
status:
code: 200
message: OK
@@ -1712,20 +1950,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1733,7 +1971,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1760,7 +1998,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:17:17 GMT
+ - Fri, 16 Apr 2021 05:24:12 GMT
expires:
- '-1'
pragma:
@@ -1777,7 +2015,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 4f677377-c815-43bb-a44d-449375abd0e9
+ - d45ba969-56fd-4e9a-9002-7772ea287412
status:
code: 200
message: OK
@@ -1795,20 +2033,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1816,7 +2054,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1843,7 +2081,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:17:47 GMT
+ - Fri, 16 Apr 2021 05:24:42 GMT
expires:
- '-1'
pragma:
@@ -1860,7 +2098,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 87f3e2e0-dcfa-4fd5-bf3c-22fe675c2348
+ - 6c5257ab-dc9c-4a51-bb0b-c2cc6e9f4e73
status:
code: 200
message: OK
@@ -1878,20 +2116,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1899,7 +2137,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1926,7 +2164,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:18:17 GMT
+ - Fri, 16 Apr 2021 05:25:12 GMT
expires:
- '-1'
pragma:
@@ -1943,7 +2181,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 4a252e79-76ed-418a-9989-c08f36a7c4a9
+ - 73e5d42e-12c5-4b71-aefd-e63f0d4a1842
status:
code: 200
message: OK
@@ -1961,20 +2199,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -1982,7 +2220,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2009,7 +2247,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:18:47 GMT
+ - Fri, 16 Apr 2021 05:25:42 GMT
expires:
- '-1'
pragma:
@@ -2026,7 +2264,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6698d131-c2e6-4f36-8e9c-7eea8422eeb4
+ - e136f95e-c1c1-4545-beb5-f563be2c0446
status:
code: 200
message: OK
@@ -2044,20 +2282,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2065,7 +2303,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2092,7 +2330,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:19:17 GMT
+ - Fri, 16 Apr 2021 05:26:13 GMT
expires:
- '-1'
pragma:
@@ -2109,7 +2347,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 89c26698-b6fb-44b6-b1ca-50e916607fa6
+ - 3591b598-e213-496b-b016-d4f1fc81be5c
status:
code: 200
message: OK
@@ -2127,20 +2365,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2148,7 +2386,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2175,7 +2413,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:19:48 GMT
+ - Fri, 16 Apr 2021 05:26:43 GMT
expires:
- '-1'
pragma:
@@ -2192,7 +2430,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 961fade1-72f5-4c9f-b63e-69a195e6754e
+ - 40edfe54-9b83-4f17-b8a8-d37744635f04
status:
code: 200
message: OK
@@ -2210,20 +2448,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2231,7 +2469,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2258,7 +2496,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:20:18 GMT
+ - Fri, 16 Apr 2021 05:27:13 GMT
expires:
- '-1'
pragma:
@@ -2275,7 +2513,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6033ed39-a0bb-42ac-a263-9e17e248af3e
+ - 45802ef4-27af-4a4a-8af3-a04b39158553
status:
code: 200
message: OK
@@ -2293,20 +2531,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2314,7 +2552,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2341,7 +2579,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:20:49 GMT
+ - Fri, 16 Apr 2021 05:27:44 GMT
expires:
- '-1'
pragma:
@@ -2358,7 +2596,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 23cb6848-2bdf-4794-9b3d-c7c229cd7984
+ - ae1cd848-5308-4a11-869b-6a43d6495f4b
status:
code: 200
message: OK
@@ -2376,20 +2614,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2397,7 +2635,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2424,7 +2662,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:21:19 GMT
+ - Fri, 16 Apr 2021 05:28:14 GMT
expires:
- '-1'
pragma:
@@ -2441,7 +2679,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f66d0013-08b5-4ccf-9d3c-ec3d4f0a5476
+ - 7013b620-cbf5-438a-8a30-628439a87ced
status:
code: 200
message: OK
@@ -2459,20 +2697,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2480,7 +2718,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2507,7 +2745,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:21:49 GMT
+ - Fri, 16 Apr 2021 05:28:45 GMT
expires:
- '-1'
pragma:
@@ -2524,7 +2762,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 33673fc8-e807-47f0-861f-12823fedc427
+ - de61b927-b267-4f1b-a5de-6d3bdb1b20e8
status:
code: 200
message: OK
@@ -2542,20 +2780,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2563,7 +2801,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2590,7 +2828,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:22:19 GMT
+ - Fri, 16 Apr 2021 05:29:15 GMT
expires:
- '-1'
pragma:
@@ -2607,7 +2845,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 46584c13-6262-417c-a708-3303831208ac
+ - eac82214-87a4-42bd-ae4d-efc9d855f0f4
status:
code: 200
message: OK
@@ -2625,20 +2863,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2646,7 +2884,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2673,7 +2911,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:22:51 GMT
+ - Fri, 16 Apr 2021 05:29:45 GMT
expires:
- '-1'
pragma:
@@ -2690,7 +2928,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 223354e3-1090-4033-8fa9-e9aa8f14ca50
+ - 19ad3c4f-4b19-4f80-9a8f-e7e775948569
status:
code: 200
message: OK
@@ -2708,20 +2946,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2729,7 +2967,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2756,7 +2994,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:23:21 GMT
+ - Fri, 16 Apr 2021 05:30:16 GMT
expires:
- '-1'
pragma:
@@ -2773,7 +3011,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e9b89864-20f2-47f4-82a0-176d3e79adb2
+ - 846fb5c0-f433-4c3d-b5df-e41fe8496bcc
status:
code: 200
message: OK
@@ -2791,20 +3029,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2812,7 +3050,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2839,7 +3077,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:23:51 GMT
+ - Fri, 16 Apr 2021 05:30:47 GMT
expires:
- '-1'
pragma:
@@ -2856,7 +3094,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - ff09139b-5b2b-490a-9ec7-17d345a8effa
+ - 3f8dbcbe-a2e8-4233-b74e-d101020f9ef0
status:
code: 200
message: OK
@@ -2874,20 +3112,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2895,7 +3133,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2922,7 +3160,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:24:21 GMT
+ - Fri, 16 Apr 2021 05:31:17 GMT
expires:
- '-1'
pragma:
@@ -2939,7 +3177,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e0ae9c1f-3483-4d99-976e-632038f70ea2
+ - 26e23cea-c972-46cc-becb-a83e434b346c
status:
code: 200
message: OK
@@ -2957,20 +3195,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -2978,7 +3216,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3005,7 +3243,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:24:51 GMT
+ - Fri, 16 Apr 2021 05:31:47 GMT
expires:
- '-1'
pragma:
@@ -3022,7 +3260,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 79f8b40b-54e4-4d16-9b8d-d25fb540cc0f
+ - 4f2d2d5a-59c5-4327-93c1-6ebdea7ae33f
status:
code: 200
message: OK
@@ -3040,20 +3278,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3061,7 +3299,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3088,7 +3326,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:25:21 GMT
+ - Fri, 16 Apr 2021 05:32:17 GMT
expires:
- '-1'
pragma:
@@ -3105,7 +3343,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 514c6952-0d61-4547-a796-f00e51ecca57
+ - 743c6d74-61b1-4afe-88a4-f67ea302677d
status:
code: 200
message: OK
@@ -3123,20 +3361,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3144,7 +3382,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3171,7 +3409,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:25:53 GMT
+ - Fri, 16 Apr 2021 05:32:48 GMT
expires:
- '-1'
pragma:
@@ -3188,7 +3426,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 39adf494-0e92-47e7-a28c-175fa6807ed8
+ - 768977ce-d289-48c0-ab0d-83352c5a4eae
status:
code: 200
message: OK
@@ -3206,20 +3444,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3227,7 +3465,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3254,7 +3492,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:25 GMT
+ - Fri, 16 Apr 2021 05:33:18 GMT
expires:
- '-1'
pragma:
@@ -3271,7 +3509,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 32ea4355-8a21-4697-a2cb-ccf93c3672cc
+ - 9e2ff2d0-394c-4b1c-98db-4463c864af87
status:
code: 200
message: OK
@@ -3289,20 +3527,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3310,7 +3548,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3337,7 +3575,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:26:55 GMT
+ - Fri, 16 Apr 2021 05:33:49 GMT
expires:
- '-1'
pragma:
@@ -3354,7 +3592,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 74d17541-9d13-40b8-b4fe-c6b10e44dc9c
+ - 355a28f8-3af4-453c-8f06-a878333d6583
status:
code: 200
message: OK
@@ -3372,20 +3610,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3393,7 +3631,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3420,7 +3658,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:27:26 GMT
+ - Fri, 16 Apr 2021 05:34:18 GMT
expires:
- '-1'
pragma:
@@ -3437,7 +3675,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - bb4393b1-1e76-4568-9674-2c0c1270a357
+ - ae79f8ae-73a8-4071-addb-54aa046a814a
status:
code: 200
message: OK
@@ -3455,20 +3693,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3476,7 +3714,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3503,7 +3741,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:27:56 GMT
+ - Fri, 16 Apr 2021 05:34:49 GMT
expires:
- '-1'
pragma:
@@ -3520,7 +3758,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 58d24e1d-262e-4f0c-95b5-499dfda8c701
+ - dbf59585-c2c4-4d3f-9fcc-2ba44a931ea5
status:
code: 200
message: OK
@@ -3538,20 +3776,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3559,7 +3797,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3586,7 +3824,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:28:27 GMT
+ - Fri, 16 Apr 2021 05:35:20 GMT
expires:
- '-1'
pragma:
@@ -3603,7 +3841,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 31e3113d-360e-4a69-a4a8-07a49abc4caf
+ - c1c08330-083f-4e39-8f16-38ce3566f154
status:
code: 200
message: OK
@@ -3621,20 +3859,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3642,7 +3880,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3669,7 +3907,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:28:57 GMT
+ - Fri, 16 Apr 2021 05:35:50 GMT
expires:
- '-1'
pragma:
@@ -3686,7 +3924,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6d02c20e-4687-4f6d-94ca-266054473e85
+ - 60f9764b-2fd2-48d5-b18e-88f67d27fbf2
status:
code: 200
message: OK
@@ -3704,20 +3942,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3725,7 +3963,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3752,7 +3990,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:29:27 GMT
+ - Fri, 16 Apr 2021 05:36:20 GMT
expires:
- '-1'
pragma:
@@ -3769,7 +4007,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - bb42a99d-36c2-4e2f-a6ef-d168238668b4
+ - e4b8e63c-951c-400c-b317-df6c3988aa27
status:
code: 200
message: OK
@@ -3787,20 +4025,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3808,7 +4046,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3835,7 +4073,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:29:59 GMT
+ - Fri, 16 Apr 2021 05:36:50 GMT
expires:
- '-1'
pragma:
@@ -3852,7 +4090,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e0a42c17-eae6-45d3-a516-aebadc5e6981
+ - ab98ab3f-3bac-4fac-953a-e8c0ac0c431b
status:
code: 200
message: OK
@@ -3870,20 +4108,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3891,7 +4129,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3918,7 +4156,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:30:29 GMT
+ - Fri, 16 Apr 2021 05:37:21 GMT
expires:
- '-1'
pragma:
@@ -3935,7 +4173,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 62344852-94a9-4110-bb37-1702d983d770
+ - a9a9d64a-5ef6-4363-895e-65a032dbee4a
status:
code: 200
message: OK
@@ -3953,20 +4191,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -3974,7 +4212,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4001,7 +4239,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:30:59 GMT
+ - Fri, 16 Apr 2021 05:37:52 GMT
expires:
- '-1'
pragma:
@@ -4018,7 +4256,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 904ff3f4-f076-42b8-a453-92f3e6f14e0d
+ - 4e8ce36b-595c-4537-89aa-dcbb4fd79592
status:
code: 200
message: OK
@@ -4036,20 +4274,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4057,7 +4295,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4084,7 +4322,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:31:29 GMT
+ - Fri, 16 Apr 2021 05:38:22 GMT
expires:
- '-1'
pragma:
@@ -4101,7 +4339,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 52f7edc9-283b-4096-affe-3478d3d1d8fd
+ - 5be6a2b3-ab56-4378-89d1-4f226e0c8826
status:
code: 200
message: OK
@@ -4119,20 +4357,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4140,7 +4378,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4167,7 +4405,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:31:59 GMT
+ - Fri, 16 Apr 2021 05:38:52 GMT
expires:
- '-1'
pragma:
@@ -4184,7 +4422,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 86e0f8c8-6726-4e0f-8297-4c9c0220db02
+ - 0154360a-a4cd-4fe5-b50a-3a1d6c72773a
status:
code: 200
message: OK
@@ -4202,20 +4440,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4223,7 +4461,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4250,7 +4488,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:32:30 GMT
+ - Fri, 16 Apr 2021 05:39:23 GMT
expires:
- '-1'
pragma:
@@ -4267,7 +4505,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b9003933-1f98-4f6c-b08d-f8637f27f82c
+ - cbe70b48-c9f0-41c7-9e27-f7fe5ad78930
status:
code: 200
message: OK
@@ -4285,20 +4523,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4306,7 +4544,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4333,7 +4571,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:33:00 GMT
+ - Fri, 16 Apr 2021 05:39:53 GMT
expires:
- '-1'
pragma:
@@ -4350,7 +4588,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 079f0146-1a6a-4ffc-9d9b-67997ecb09ad
+ - f2e9ba0f-3529-40af-b40d-09b1771077ac
status:
code: 200
message: OK
@@ -4368,20 +4606,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4389,7 +4627,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4416,7 +4654,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:33:32 GMT
+ - Fri, 16 Apr 2021 05:40:24 GMT
expires:
- '-1'
pragma:
@@ -4433,7 +4671,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - d15e74d3-c720-4ca6-81aa-f299c3f8ecea
+ - 511aabca-993e-49de-9b96-601cc2bb7211
status:
code: 200
message: OK
@@ -4451,20 +4689,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4472,7 +4710,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4499,7 +4737,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:34:02 GMT
+ - Fri, 16 Apr 2021 05:40:54 GMT
expires:
- '-1'
pragma:
@@ -4516,7 +4754,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b8340c20-768f-4859-a7ed-878c1b96858d
+ - 9f7c7a05-6f2f-4a65-b6f7-90c2525cf08b
status:
code: 200
message: OK
@@ -4534,20 +4772,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4555,7 +4793,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4582,7 +4820,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:34:32 GMT
+ - Fri, 16 Apr 2021 05:41:25 GMT
expires:
- '-1'
pragma:
@@ -4599,7 +4837,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7194bccb-9b71-485d-bb44-809d4fd3a387
+ - 106ea4be-bfe8-466e-852e-25e2a9f0bc3b
status:
code: 200
message: OK
@@ -4617,20 +4855,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4638,7 +4876,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4665,7 +4903,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:35:02 GMT
+ - Fri, 16 Apr 2021 05:41:55 GMT
expires:
- '-1'
pragma:
@@ -4682,7 +4920,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c22a6837-ade8-403f-8f93-797c9716aebf
+ - b28151d0-7352-431e-abed-42e09e10bd3a
status:
code: 200
message: OK
@@ -4700,20 +4938,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4721,7 +4959,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4748,7 +4986,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:35:32 GMT
+ - Fri, 16 Apr 2021 05:42:25 GMT
expires:
- '-1'
pragma:
@@ -4765,7 +5003,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 37f88484-3fe0-4aba-993a-f7edb4a1f986
+ - ad1a433c-f67b-4ad6-aa9d-e0d3ebb311cc
status:
code: 200
message: OK
@@ -4783,20 +5021,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4804,7 +5042,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4831,7 +5069,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:36:03 GMT
+ - Fri, 16 Apr 2021 05:42:56 GMT
expires:
- '-1'
pragma:
@@ -4848,7 +5086,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - cc9034cc-a8ba-45cf-a660-56db985fdb7c
+ - d347b84a-8e52-4b7a-bf8b-7eaec696b3c9
status:
code: 200
message: OK
@@ -4866,20 +5104,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4887,7 +5125,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4914,7 +5152,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:36:34 GMT
+ - Fri, 16 Apr 2021 05:43:26 GMT
expires:
- '-1'
pragma:
@@ -4931,7 +5169,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 3a653f85-e4a5-4dcd-b2fe-3b2be82a9d43
+ - 6ced277c-901e-46ac-9868-318f960eb7f9
status:
code: 200
message: OK
@@ -4949,20 +5187,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4970,7 +5208,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -4997,7 +5235,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:37:04 GMT
+ - Fri, 16 Apr 2021 05:43:56 GMT
expires:
- '-1'
pragma:
@@ -5014,7 +5252,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1e1e2e21-d8b6-4645-8149-2e233fba1c07
+ - 23c2022b-1674-4ffa-a11e-8b0fc23d6d8b
status:
code: 200
message: OK
@@ -5032,20 +5270,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5053,7 +5291,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5080,7 +5318,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:37:34 GMT
+ - Fri, 16 Apr 2021 05:44:27 GMT
expires:
- '-1'
pragma:
@@ -5097,7 +5335,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7c60128f-1d27-47ea-8823-8a8a41bc47d4
+ - ccc1298b-48a0-41e6-b290-b2d8450b2e46
status:
code: 200
message: OK
@@ -5115,20 +5353,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5136,7 +5374,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5163,7 +5401,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:38:04 GMT
+ - Fri, 16 Apr 2021 05:44:57 GMT
expires:
- '-1'
pragma:
@@ -5180,7 +5418,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 02592502-39bb-4e3a-be58-b946b4688dd1
+ - bb2eb926-e7f2-4f3d-b2e6-51df866e0a47
status:
code: 200
message: OK
@@ -5198,20 +5436,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5219,7 +5457,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5246,7 +5484,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:38:35 GMT
+ - Fri, 16 Apr 2021 05:45:27 GMT
expires:
- '-1'
pragma:
@@ -5263,7 +5501,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c34ba666-2d66-476e-930d-1470cd9253c0
+ - 8c4b844b-49dc-48c9-b66e-24196fde019c
status:
code: 200
message: OK
@@ -5281,20 +5519,20 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5302,7 +5540,7 @@ interactions:
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"3fd8e934-5782-4aa7-a719-b151f079662f\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\":
@@ -5329,7 +5567,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:39:05 GMT
+ - Fri, 16 Apr 2021 05:45:59 GMT
expires:
- '-1'
pragma:
@@ -5346,7 +5584,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 70589950-0e05-4708-9420-35ac180a7c88
+ - 38d0c8ed-1f4e-4fde-a052-f7cc2b89fb92
status:
code: 200
message: OK
@@ -5364,30 +5602,30 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
- \ \"etag\": \"W/\\\"af9f91e9-8ad6-4430-845e-96e8f2da2328\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"feb620b7-d99d-41d6-8b3f-65600cfe95c6\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"af9f91e9-8ad6-4430-845e-96e8f2da2328\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\r\n
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"af9f91e9-8ad6-4430-845e-96e8f2da2328\\\"\",\r\n
+ \ \"etag\": \"W/\\\"7cde7288-270b-4a13-a513-ab4ca90fb4a1\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\r\n
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
@@ -5396,26 +5634,23 @@ interactions:
\"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\":
2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
\ \"enableBgp\": true,\r\n \"activeActive\": true,\r\n \"bgpSettings\":
- {\r\n \"asn\": 65010,\r\n \"bgpPeeringAddress\": \"10.21.255.4,10.21.255.5\",\r\n
+ {\r\n \"asn\": 65010,\r\n \"bgpPeeringAddress\": \"10.52.255.253\",\r\n
\ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [\r\n \"10.21.255.4\"\r\n
- \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"13.83.88.135\"\r\n ]\r\n },\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"defaultBgpIpAddresses\": [\r\n \"10.21.255.5\"\r\n
- \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"13.83.88.139\"\r\n ]\r\n }\r\n ]\r\n
- \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n },\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '4322'
+ - '4079'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:39:36 GMT
+ - Fri, 16 Apr 2021 05:46:29 GMT
expires:
- '-1'
pragma:
@@ -5432,7 +5667,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6f3f1ebc-fa26-4a72-9373-06881ae4d17b
+ - 01a61b7d-2fc3-426f-876d-a2a3d79f241e
status:
code: 200
message: OK
@@ -5450,55 +5685,58 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1?api-version=2020-11-01
response:
body:
- string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n \"type\":
+ string: "{\r\n \"name\": \"vgw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1\",\r\n
+ \ \"etag\": \"W/\\\"0a8258b7-7ee1-4ca9-b190-4f3604d78296\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"dcdc4054-dbbb-4445-ae4c-1d0d816fd8df\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"602cc8d9-4193-454f-9dd1-04935eee870d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"0a8258b7-7ee1-4ca9-b190-4f3604d78296\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
+ \ \"etag\": \"W/\\\"0a8258b7-7ee1-4ca9-b190-4f3604d78296\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw1ip2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
\ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
\"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\":
2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
\ \"enableBgp\": true,\r\n \"activeActive\": true,\r\n \"bgpSettings\":
- {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\": \"10.53.255.253\",\r\n
+ {\r\n \"asn\": 65010,\r\n \"bgpPeeringAddress\": \"10.21.255.4,10.21.255.5\",\r\n
\ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n },\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.21.255.4\"\r\n
+ \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"137.135.40.168\"\r\n ]\r\n },\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1/ipConfigurations/vnetGatewayConfig1\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.21.255.5\"\r\n
+ \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"23.99.10.221\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '4079'
+ - '4324'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:39:36 GMT
+ - Fri, 16 Apr 2021 05:46:59 GMT
expires:
- '-1'
pragma:
@@ -5515,7 +5753,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b47487bd-b700-4fd3-a47e-2770eb2914f5
+ - 9e9889a5-235c-4ae8-9495-e617bd8a5d74
status:
code: 200
message: OK
@@ -5533,30 +5771,30 @@ interactions:
ParameterSetName:
- -g -n --created
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"0b09c300-5e96-4d52-90ba-480b92cbc6d9\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"dcdc4054-dbbb-4445-ae4c-1d0d816fd8df\",\r\n \"packetCaptureDiagnosticState\":
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"9752b4d5-3407-44d9-bc8a-97c04ca6686d\",\r\n \"packetCaptureDiagnosticState\":
\"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
[\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
+ \ \"etag\": \"W/\\\"0b09c300-5e96-4d52-90ba-480b92cbc6d9\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\r\n
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
\ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
+ \ \"etag\": \"W/\\\"0b09c300-5e96-4d52-90ba-480b92cbc6d9\\\"\",\r\n
\ \"type\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\r\n
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
@@ -5565,23 +5803,26 @@ interactions:
\"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\":
2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
\ \"enableBgp\": true,\r\n \"activeActive\": true,\r\n \"bgpSettings\":
- {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\": \"10.53.255.253\",\r\n
+ {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\": \"10.22.255.4,10.22.255.5\",\r\n
\ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
\ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n },\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.22.255.4\"\r\n
+ \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"138.91.164.214\"\r\n ]\r\n },\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.22.255.5\"\r\n
+ \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"138.91.164.218\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '4079'
+ - '4326'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:40:08 GMT
+ - Fri, 16 Apr 2021 05:47:00 GMT
expires:
- '-1'
pragma:
@@ -5598,7 +5839,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8ee52175-f6ff-4838-87f9-1ee488ed4fbc
+ - 15246d62-6ad5-4ade-bf6c-d1a4e73fb88d
status:
code: 200
message: OK
@@ -5610,164 +5851,104 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet-gateway wait
+ - network vpn-connection create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --created
+ - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2020-10-01
response:
body:
- string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"dcdc4054-dbbb-4445-ae4c-1d0d816fd8df\",\r\n \"packetCaptureDiagnosticState\":
- \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
- [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
- \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\":
- 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
- \ \"enableBgp\": true,\r\n \"activeActive\": true,\r\n \"bgpSettings\":
- {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\": \"10.53.255.253\",\r\n
- \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n },\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-16T05:20:55Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '4079'
+ - '428'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:40:38 GMT
+ - Fri, 16 Apr 2021 05:47:01 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:
- - 2818b1ea-50b1-4f09-adfd-0ff9857248ed
status:
code: 200
message: OK
- request:
- body: null
+ body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0", "parameters": {"sharedKey": {"type": "securestring",
+ "metadata": {"description": "Secure sharedKey"}}}, "variables": {}, "resources":
+ [{"type": "Microsoft.Network/connections", "name": "vnet1to2", "location": "westus",
+ "tags": {}, "apiVersion": "2015-06-15", "dependsOn": [], "properties": {"virtualNetworkGateway1":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},
+ "enableBgp": true, "connectionType": "Vnet2Vnet", "routingWeight": 10, "usePolicyBasedTrafficSelectors":
+ false, "expressRouteGatewayBypass": null, "virtualNetworkGateway2": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},
+ "sharedKey": "[parameters(''sharedKey'')]"}}], "outputs": {"resource": {"type":
+ "object", "value": "[reference(''vnet1to2'')]"}}}, "parameters": {"sharedKey":
+ {"value": "abc123"}}, "mode": "Incremental"}}'
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet-gateway wait
+ - network vpn-connection create
Connection:
- keep-alive
+ Content-Length:
+ - '1262'
+ Content-Type:
+ - application/json; charset=utf-8
ParameterSetName:
- - -g -n --created
+ - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2020-11-01
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"dcdc4054-dbbb-4445-ae4c-1d0d816fd8df\",\r\n \"packetCaptureDiagnosticState\":
- \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
- [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
- \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\":
- 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
- \ \"enableBgp\": true,\r\n \"activeActive\": true,\r\n \"bgpSettings\":
- {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\": \"10.53.255.253\",\r\n
- \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n },\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_aRCpV0GgqLnYnwHZ51IKkYvp3I9lcP2d","name":"vpn_connection_deploy_aRCpV0GgqLnYnwHZ51IKkYvp3I9lcP2d","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6228090222972041816","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-16T05:47:06.0900506Z","duration":"PT2.2977838S","correlationId":"e8b98e68-d15c-405a-88d5-469a407a6b6f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'
headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_aRCpV0GgqLnYnwHZ51IKkYvp3I9lcP2d/operationStatuses/08585830548616853564?api-version=2020-10-01
cache-control:
- no-cache
content-length:
- - '4079'
+ - '770'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:41:08 GMT
+ - Fri, 16 Apr 2021 05:47: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:
- - 647d43cb-abd0-4ec6-ad93-fc207be9343b
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
status:
- code: 200
- message: OK
+ code: 201
+ message: Created
- request:
body: null
headers:
@@ -5776,78 +5957,38 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet-gateway wait
+ - network vpn-connection create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --created
+ - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585830548616853564?api-version=2020-10-01
response:
body:
- string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"dcdc4054-dbbb-4445-ae4c-1d0d816fd8df\",\r\n \"packetCaptureDiagnosticState\":
- \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
- [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
- \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\":
- 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
- \ \"enableBgp\": true,\r\n \"activeActive\": true,\r\n \"bgpSettings\":
- {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\": \"10.53.255.253\",\r\n
- \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n },\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ string: '{"status":"Running"}'
headers:
cache-control:
- no-cache
content-length:
- - '4079'
+ - '20'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:41:38 GMT
+ - Fri, 16 Apr 2021 05:47:38 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:
- - ee779461-cdf4-4888-9537-f435ceb60579
status:
code: 200
message: OK
@@ -5859,78 +6000,38 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet-gateway wait
+ - network vpn-connection create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --created
+ - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585830548616853564?api-version=2020-10-01
response:
body:
- string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"dcdc4054-dbbb-4445-ae4c-1d0d816fd8df\",\r\n \"packetCaptureDiagnosticState\":
- \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
- [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
- \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\":
- 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
- \ \"enableBgp\": true,\r\n \"activeActive\": true,\r\n \"bgpSettings\":
- {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\": \"10.53.255.253\",\r\n
- \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n },\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ string: '{"status":"Succeeded"}'
headers:
cache-control:
- no-cache
content-length:
- - '4079'
+ - '22'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:42:09 GMT
+ - Fri, 16 Apr 2021 05:48:08 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:
- - c4d3b52f-48f5-4ea4-8a90-8f6a733dc75e
status:
code: 200
message: OK
@@ -5942,78 +6043,38 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet-gateway wait
+ - network vpn-connection create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --created
+ - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"dcdc4054-dbbb-4445-ae4c-1d0d816fd8df\",\r\n \"packetCaptureDiagnosticState\":
- \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
- [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
- \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\":
- 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
- \ \"enableBgp\": true,\r\n \"activeActive\": true,\r\n \"bgpSettings\":
- {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\": \"10.53.255.253\",\r\n
- \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n },\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_aRCpV0GgqLnYnwHZ51IKkYvp3I9lcP2d","name":"vpn_connection_deploy_aRCpV0GgqLnYnwHZ51IKkYvp3I9lcP2d","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6228090222972041816","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-16T05:47:47.2591098Z","duration":"PT43.466843S","correlationId":"e8b98e68-d15c-405a-88d5-469a407a6b6f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"c321e8a9-88bc-4552-b6b6-bcd545b9bd96","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},"connectionType":"Vnet2Vnet","connectionProtocol":"IKEv2","routingWeight":10,"sharedKey":"abc123","enableBgp":true,"useLocalAzureIpAddress":false,"trafficSelectorPolicies":[],"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0,"dpdTimeoutSeconds":0,"connectionMode":"Default"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet1to2"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '4079'
+ - '1903'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:42:39 GMT
+ - Fri, 16 Apr 2021 05:48: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:
- - 77ce0464-e48e-4a41-9d1e-3af92a83308c
status:
code: 200
message: OK
@@ -6025,164 +6086,104 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet-gateway wait
+ - network vpn-connection create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --created
+ - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2020-10-01
response:
body:
- string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"dcdc4054-dbbb-4445-ae4c-1d0d816fd8df\",\r\n \"packetCaptureDiagnosticState\":
- \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
- [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
- \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\":
- 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
- \ \"enableBgp\": true,\r\n \"activeActive\": true,\r\n \"bgpSettings\":
- {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\": \"10.53.255.253\",\r\n
- \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n },\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-16T05:20:55Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '4079'
+ - '428'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:43:09 GMT
+ - Fri, 16 Apr 2021 05:48:10 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:
- - 2b161310-a833-4f63-988a-3193207605fc
status:
code: 200
message: OK
- request:
- body: null
+ body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0", "parameters": {"sharedKey": {"type": "securestring",
+ "metadata": {"description": "Secure sharedKey"}}}, "variables": {}, "resources":
+ [{"type": "Microsoft.Network/connections", "name": "vnet2to1", "location": "westus",
+ "tags": {}, "apiVersion": "2015-06-15", "dependsOn": [], "properties": {"virtualNetworkGateway1":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},
+ "enableBgp": true, "connectionType": "Vnet2Vnet", "routingWeight": 10, "usePolicyBasedTrafficSelectors":
+ false, "expressRouteGatewayBypass": null, "virtualNetworkGateway2": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},
+ "sharedKey": "[parameters(''sharedKey'')]"}}], "outputs": {"resource": {"type":
+ "object", "value": "[reference(''vnet2to1'')]"}}}, "parameters": {"sharedKey":
+ {"value": "abc123"}}, "mode": "Incremental"}}'
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet-gateway wait
+ - network vpn-connection create
Connection:
- keep-alive
+ Content-Length:
+ - '1262'
+ Content-Type:
+ - application/json; charset=utf-8
ParameterSetName:
- - -g -n --created
+ - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2020-11-01
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"dcdc4054-dbbb-4445-ae4c-1d0d816fd8df\",\r\n \"packetCaptureDiagnosticState\":
- \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
- [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
- \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\":
- 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
- \ \"enableBgp\": true,\r\n \"activeActive\": true,\r\n \"bgpSettings\":
- {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\": \"10.53.255.253\",\r\n
- \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n },\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_JXXQSxtAkYLcXNtGoh42H4c0QsQeaoRM","name":"vpn_connection_deploy_JXXQSxtAkYLcXNtGoh42H4c0QsQeaoRM","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7384890565918686855","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-16T05:48:14.3733722Z","duration":"PT2.5066426S","correlationId":"6831f3f2-c212-4ea2-b595-4b7b68e8d92c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'
headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_JXXQSxtAkYLcXNtGoh42H4c0QsQeaoRM/operationStatuses/08585830547936108872?api-version=2020-10-01
cache-control:
- no-cache
content-length:
- - '4079'
+ - '770'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:43:39 GMT
+ - Fri, 16 Apr 2021 05:48:15 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:
- - 60af8ddf-2943-4a2e-aade-7c6ab6287bbb
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1197'
status:
- code: 200
- message: OK
+ code: 201
+ message: Created
- request:
body: null
headers:
@@ -6191,78 +6192,38 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet-gateway wait
+ - network vpn-connection create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --created
+ - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585830547936108872?api-version=2020-10-01
response:
body:
- string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"dcdc4054-dbbb-4445-ae4c-1d0d816fd8df\",\r\n \"packetCaptureDiagnosticState\":
- \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
- [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
- \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\":
- 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
- \ \"enableBgp\": true,\r\n \"activeActive\": true,\r\n \"bgpSettings\":
- {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\": \"10.53.255.253\",\r\n
- \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n },\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ string: '{"status":"Running"}'
headers:
cache-control:
- no-cache
content-length:
- - '4079'
+ - '20'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:44:10 GMT
+ - Fri, 16 Apr 2021 05:48:46 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:
- - 465bfa37-8755-4e02-bbf6-df93bb4d27d9
status:
code: 200
message: OK
@@ -6274,161 +6235,81 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet-gateway wait
+ - network vpn-connection create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --created
+ - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585830547936108872?api-version=2020-10-01
response:
body:
- string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"dcdc4054-dbbb-4445-ae4c-1d0d816fd8df\",\r\n \"packetCaptureDiagnosticState\":
- \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
- [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
- \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\":
- 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
- \ \"enableBgp\": true,\r\n \"activeActive\": true,\r\n \"bgpSettings\":
- {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\": \"10.53.255.253\",\r\n
- \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n },\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ string: '{"status":"Succeeded"}'
headers:
cache-control:
- no-cache
content-length:
- - '4079'
+ - '22'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:44:41 GMT
+ - Fri, 16 Apr 2021 05:49: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:
- - 010d085b-15cf-4c37-b5d8-dd2b10208026
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - network vnet-gateway wait
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --created
- User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2020-11-01
- response:
- body:
- string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"dcdc4054-dbbb-4445-ae4c-1d0d816fd8df\",\r\n \"packetCaptureDiagnosticState\":
- \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
- [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"ee57c915-bca1-443b-9a8f-29b022fc2f67\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
- \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\":
- 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
- \ \"enableBgp\": true,\r\n \"activeActive\": true,\r\n \"bgpSettings\":
- {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\": \"10.53.255.253\",\r\n
- \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n },\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
- []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
- \ }\r\n}"
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vpn-connection create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
+ User-Agent:
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_JXXQSxtAkYLcXNtGoh42H4c0QsQeaoRM","name":"vpn_connection_deploy_JXXQSxtAkYLcXNtGoh42H4c0QsQeaoRM","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7384890565918686855","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-16T05:48:53.3409149Z","duration":"PT41.4741853S","correlationId":"6831f3f2-c212-4ea2-b595-4b7b68e8d92c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"5b468719-b589-4061-ae0d-3b4190e71c07","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},"connectionType":"Vnet2Vnet","connectionProtocol":"IKEv2","routingWeight":10,"sharedKey":"abc123","enableBgp":true,"useLocalAzureIpAddress":false,"trafficSelectorPolicies":[],"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0,"dpdTimeoutSeconds":0,"connectionMode":"Default"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet2to1"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '4079'
+ - '1904'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:45:11 GMT
+ - Fri, 16 Apr 2021 05:49: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:
- - abe36718-fcac-4dff-bfce-9f9e935c9aa9
status:
code: 200
message: OK
@@ -6440,66 +6321,33 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet-gateway wait
+ - network vpn-connection list-ike-sas
Connection:
- keep-alive
+ Content-Length:
+ - '0'
ParameterSetName:
- - -g -n --created
+ - -g -n
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2?api-version=2020-11-01
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet1to2/getikesas?api-version=2020-11-01
response:
body:
- string: "{\r\n \"name\": \"vgw2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2\",\r\n
- \ \"etag\": \"W/\\\"c4dfbdb3-ccb6-4bd4-ad91-38fa1e17b2b3\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"dcdc4054-dbbb-4445-ae4c-1d0d816fd8df\",\r\n \"packetCaptureDiagnosticState\":
- \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
- [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"etag\": \"W/\\\"c4dfbdb3-ccb6-4bd4-ad91-38fa1e17b2b3\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip1\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vnetGatewayConfig1\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"etag\": \"W/\\\"c4dfbdb3-ccb6-4bd4-ad91-38fa1e17b2b3\\\"\",\r\n
- \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/publicIPAddresses/gw2ip2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/GatewaySubnet\"\r\n
- \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
- \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
- \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\":
- 2\r\n },\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n
- \ \"enableBgp\": true,\r\n \"activeActive\": true,\r\n \"bgpSettings\":
- {\r\n \"asn\": 65020,\r\n \"bgpPeeringAddress\": \"10.22.255.4,10.22.255.5\",\r\n
- \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig0\",\r\n
- \ \"defaultBgpIpAddresses\": [\r\n \"10.22.255.4\"\r\n
- \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"13.83.92.73\"\r\n ]\r\n },\r\n {\r\n
- \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2/ipConfigurations/vnetGatewayConfig1\",\r\n
- \ \"defaultBgpIpAddresses\": [\r\n \"10.22.255.5\"\r\n
- \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
- [\r\n \"13.83.93.43\"\r\n ]\r\n }\r\n ]\r\n
- \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ string: 'null'
headers:
cache-control:
- no-cache
content-length:
- - '4320'
+ - '4'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:45:41 GMT
+ - Fri, 16 Apr 2021 05:49:18 GMT
expires:
- '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/19ab3510-232b-43a7-a211-d7176531ff34?api-version=2020-11-01
pragma:
- no-cache
server:
@@ -6507,163 +6355,167 @@ interactions:
- 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:
- - 89ca0c77-ae13-412f-b76d-0d6dec16c7f6
+ - 9fddbaf8-8507-48b1-b687-6c7f050fcf85
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
status:
- code: 200
- message: OK
+ code: 202
+ message: Accepted
- request:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vpn-connection create
+ - network vpn-connection list-ike-sas
Connection:
- keep-alive
ParameterSetName:
- - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
+ - -g -n
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
- accept-language:
- - en-US
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/19ab3510-232b-43a7-a211-d7176531ff34?api-version=2020-11-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T07:15:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '"{\"IkeSAs\":[{\"LocalEndpoint\":\"23.99.10.221\",\"RemoteEndpoint\":\"138.91.164.218\",\"InitiatorCookie\":8843935038927751572,\"ResponderCookie\":15190742996599937700,\"LocalUdpEncapsulationPort\":0,\"RemoteUdpEncapsulationPort\":0,\"Encryption\":\"AES256\",\"Integrity\":\"SHA1\",\"DhGroup\":\"DHGroup2\",\"LifeTimeSeconds\":28810,\"IsSaInitiator\":false,\"ElapsedTimeInseconds\":39,\"QuickModeSAs\":[{\"LocalEndpoint\":\"23.99.10.221\",\"RemoteEndpoint\":\"138.91.164.218\",\"Encryption\":\"GCMAES256\",\"Integrity\":\"GCMAES256\",\"PfsGroupId\":\"None\",\"InboundSPI\":2945970674,\"OutboundSPI\":2851729186,\"LocalTrafficSelectors\":[\"0.0.0.0-255.255.255.255\"],\"RemoteTrafficSelectors\":[\"0.0.0.0-255.255.255.255\"],\"LifetimeKilobytes\":102400000,\"LifetimeSeconds\":27000,\"IsSaInitiator\":false,\"ElapsedTimeInseconds\":39}]},{\"LocalEndpoint\":\"23.99.10.221\",\"RemoteEndpoint\":\"138.91.164.214\",\"InitiatorCookie\":16793632281815664500,\"ResponderCookie\":16052216218782833895,\"LocalUdpEncapsulationPort\":0,\"RemoteUdpEncapsulationPort\":0,\"Encryption\":\"AES256\",\"Integrity\":\"SHA1\",\"DhGroup\":\"DHGroup2\",\"LifeTimeSeconds\":28810,\"IsSaInitiator\":false,\"ElapsedTimeInseconds\":36,\"QuickModeSAs\":[{\"LocalEndpoint\":\"23.99.10.221\",\"RemoteEndpoint\":\"138.91.164.214\",\"Encryption\":\"GCMAES256\",\"Integrity\":\"GCMAES256\",\"PfsGroupId\":\"None\",\"InboundSPI\":1841338758,\"OutboundSPI\":3909178066,\"LocalTrafficSelectors\":[\"0.0.0.0-255.255.255.255\"],\"RemoteTrafficSelectors\":[\"0.0.0.0-255.255.255.255\"],\"LifetimeKilobytes\":102400000,\"LifetimeSeconds\":27000,\"IsSaInitiator\":false,\"ElapsedTimeInseconds\":36}]},{\"LocalEndpoint\":\"137.135.40.168\",\"RemoteEndpoint\":\"138.91.164.218\",\"InitiatorCookie\":10218178651622843251,\"ResponderCookie\":6658967625370230947,\"LocalUdpEncapsulationPort\":0,\"RemoteUdpEncapsulationPort\":0,\"Encryption\":\"AES256\",\"Integrity\":\"SHA1\",\"DhGroup\":\"DHGroup2\",\"LifeTimeSeconds\":28810,\"IsSaInitiator\":false,\"ElapsedTimeInseconds\":38,\"QuickModeSAs\":[{\"LocalEndpoint\":\"137.135.40.168\",\"RemoteEndpoint\":\"138.91.164.218\",\"Encryption\":\"GCMAES256\",\"Integrity\":\"GCMAES256\",\"PfsGroupId\":\"None\",\"InboundSPI\":443942012,\"OutboundSPI\":384332140,\"LocalTrafficSelectors\":[\"0.0.0.0-255.255.255.255\"],\"RemoteTrafficSelectors\":[\"0.0.0.0-255.255.255.255\"],\"LifetimeKilobytes\":102400000,\"LifetimeSeconds\":27000,\"IsSaInitiator\":false,\"ElapsedTimeInseconds\":38}]},{\"LocalEndpoint\":\"137.135.40.168\",\"RemoteEndpoint\":\"138.91.164.214\",\"InitiatorCookie\":2028874926760980921,\"ResponderCookie\":7453010503795711550,\"LocalUdpEncapsulationPort\":0,\"RemoteUdpEncapsulationPort\":0,\"Encryption\":\"AES256\",\"Integrity\":\"SHA1\",\"DhGroup\":\"DHGroup2\",\"LifeTimeSeconds\":28810,\"IsSaInitiator\":false,\"ElapsedTimeInseconds\":36,\"QuickModeSAs\":[{\"LocalEndpoint\":\"137.135.40.168\",\"RemoteEndpoint\":\"138.91.164.214\",\"Encryption\":\"GCMAES256\",\"Integrity\":\"GCMAES256\",\"PfsGroupId\":\"None\",\"InboundSPI\":794052234,\"OutboundSPI\":645460760,\"LocalTrafficSelectors\":[\"0.0.0.0-255.255.255.255\"],\"RemoteTrafficSelectors\":[\"0.0.0.0-255.255.255.255\"],\"LifetimeKilobytes\":102400000,\"LifetimeSeconds\":27000,\"IsSaInitiator\":false,\"ElapsedTimeInseconds\":36}]}]}"'
headers:
cache-control:
- no-cache
content-length:
- - '428'
+ - '3316'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:45:42 GMT
+ - Fri, 16 Apr 2021 05:49:28 GMT
expires:
- '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/19ab3510-232b-43a7-a211-d7176531ff34?api-version=2020-11-01
pragma:
- no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-arm-service-request-id:
+ - 9fddbaf8-8507-48b1-b687-6c7f050fcf85
status:
code: 200
message: OK
- request:
- body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "contentVersion": "1.0.0.0", "parameters": {"sharedKey": {"type": "securestring",
- "metadata": {"description": "Secure sharedKey"}}}, "variables": {}, "resources":
- [{"type": "Microsoft.Network/connections", "name": "vnet1to2", "location": "westus",
- "tags": {}, "apiVersion": "2015-06-15", "dependsOn": [], "properties": {"virtualNetworkGateway1":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},
- "enableBgp": true, "connectionType": "Vnet2Vnet", "routingWeight": 10, "usePolicyBasedTrafficSelectors":
- false, "expressRouteGatewayBypass": null, "virtualNetworkGateway2": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},
- "sharedKey": "[parameters(''sharedKey'')]"}}], "outputs": {"resource": {"type":
- "object", "value": "[reference(''vnet1to2'')]"}}}, "parameters": {"sharedKey":
- {"value": "abc123"}}, "mode": "Incremental"}}'
+ body: '{}'
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vpn-connection create
+ - network vpn-connection packet-capture start
Connection:
- keep-alive
Content-Length:
- - '1262'
+ - '2'
Content-Type:
- - application/json; charset=utf-8
+ - application/json
ParameterSetName:
- - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
+ - -g -n
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
- accept-language:
- - en-US
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet1to2/startPacketCapture?api-version=2020-11-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_StDIcToQseIy77FDqXubcn58jbgj7jPy","name":"vpn_connection_deploy_StDIcToQseIy77FDqXubcn58jbgj7jPy","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14430855743144676195","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-03-04T07:45:46.5054956Z","duration":"PT2.0547761S","correlationId":"e1b07469-1471-4057-8f00-3cb24e1c0f31","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'
+ string: 'null'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_StDIcToQseIy77FDqXubcn58jbgj7jPy/operationStatuses/08585867629410268942?api-version=2020-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/adad7918-93a9-40ae-b7e5-9360ab182ea0?api-version=2020-11-01
cache-control:
- no-cache
content-length:
- - '771'
+ - '4'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:45:47 GMT
+ - Fri, 16 Apr 2021 05:52:46 GMT
expires:
- '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/adad7918-93a9-40ae-b7e5-9360ab182ea0?api-version=2020-11-01
pragma:
- no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
x-content-type-options:
- nosniff
+ x-ms-arm-service-request-id:
+ - d4c05eaa-6d76-4a8d-8535-836dca6ca555
x-ms-ratelimit-remaining-subscription-writes:
- - '1184'
+ - '1199'
status:
- code: 201
- message: Created
+ code: 202
+ message: Accepted
- request:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vpn-connection create
+ - network vpn-connection packet-capture start
Connection:
- keep-alive
ParameterSetName:
- - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
+ - -g -n
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585867629410268942?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/adad7918-93a9-40ae-b7e5-9360ab182ea0?api-version=2020-11-01
response:
body:
- string: '{"status":"Running"}'
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '20'
+ - '30'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:46:19 GMT
+ - Fri, 16 Apr 2021 05:52:57 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:
+ - 285a8996-c815-455f-98ba-48d21fb49baa
status:
code: 200
message: OK
@@ -6671,42 +6523,49 @@ interactions:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vpn-connection create
+ - network vpn-connection packet-capture start
Connection:
- keep-alive
ParameterSetName:
- - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
+ - -g -n
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585867629410268942?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/adad7918-93a9-40ae-b7e5-9360ab182ea0?api-version=2020-11-01
response:
body:
- string: '{"status":"Succeeded"}'
+ string: "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\":
+ \"{\\\"Status\\\":\\\"Successful\\\",\\\"Data\\\":\\\"\\\"}\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '22'
+ - '113'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:46:49 GMT
+ - Fri, 16 Apr 2021 05:53: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:
+ - f9ae24b6-5255-4671-bb9e-e949c5d56113
status:
code: 200
message: OK
@@ -6714,191 +6573,205 @@ interactions:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vpn-connection create
+ - network vpn-connection packet-capture start
Connection:
- keep-alive
ParameterSetName:
- - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
+ - -g -n
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/adad7918-93a9-40ae-b7e5-9360ab182ea0?api-version=2020-11-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_StDIcToQseIy77FDqXubcn58jbgj7jPy","name":"vpn_connection_deploy_StDIcToQseIy77FDqXubcn58jbgj7jPy","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14430855743144676195","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-03-04T07:46:26.03507Z","duration":"PT41.5843505S","correlationId":"e1b07469-1471-4057-8f00-3cb24e1c0f31","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"dc18e7eb-094e-42d7-bff0-2bac306fbf42","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},"connectionType":"Vnet2Vnet","connectionProtocol":"IKEv2","routingWeight":10,"sharedKey":"abc123","enableBgp":true,"useLocalAzureIpAddress":false,"trafficSelectorPolicies":[],"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0,"dpdTimeoutSeconds":0,"connectionMode":"Default"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet1to2"}]}}'
+ string: '"{\"Status\":\"Successful\",\"Data\":\"\"}"'
headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/adad7918-93a9-40ae-b7e5-9360ab182ea0?api-version=2020-11-01
cache-control:
- no-cache
content-length:
- - '1903'
+ - '43'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:46:49 GMT
+ - Fri, 16 Apr 2021 05:53:07 GMT
expires:
- '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/adad7918-93a9-40ae-b7e5-9360ab182ea0?api-version=2020-11-01
pragma:
- no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-arm-service-request-id:
+ - d4c05eaa-6d76-4a8d-8535-836dca6ca555
status:
code: 200
message: OK
- request:
- body: null
+ body: '{"sasUrl": "https://clitestvpncnn000002.blob.azure.com/clitestvpngw000003?se=2020-10-27&sp=w&sv=2018-11-09&sr=c"}'
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vpn-connection create
+ - network vpn-connection packet-capture stop
Connection:
- keep-alive
+ Content-Length:
+ - '192'
+ Content-Type:
+ - application/json
ParameterSetName:
- - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
+ - -g -n --sas-url
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001?api-version=2020-10-01
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet1to2/stopPacketCapture?api-version=2020-11-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001","name":"cli_test_active_active_vnet_vnet_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-04T07:15:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: 'null'
headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dc324330-b947-484c-b52e-e57d6ca53bea?api-version=2020-11-01
cache-control:
- no-cache
content-length:
- - '428'
+ - '4'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:46:50 GMT
+ - Fri, 16 Apr 2021 05:53:33 GMT
expires:
- '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/dc324330-b947-484c-b52e-e57d6ca53bea?api-version=2020-11-01
pragma:
- no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-arm-service-request-id:
+ - 40856a0c-43fc-41b2-8139-c81f516765c4
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
status:
- code: 200
- message: OK
+ code: 202
+ message: Accepted
- request:
- body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
- "contentVersion": "1.0.0.0", "parameters": {"sharedKey": {"type": "securestring",
- "metadata": {"description": "Secure sharedKey"}}}, "variables": {}, "resources":
- [{"type": "Microsoft.Network/connections", "name": "vnet2to1", "location": "westus",
- "tags": {}, "apiVersion": "2015-06-15", "dependsOn": [], "properties": {"virtualNetworkGateway1":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},
- "enableBgp": true, "connectionType": "Vnet2Vnet", "routingWeight": 10, "usePolicyBasedTrafficSelectors":
- false, "expressRouteGatewayBypass": null, "virtualNetworkGateway2": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},
- "sharedKey": "[parameters(''sharedKey'')]"}}], "outputs": {"resource": {"type":
- "object", "value": "[reference(''vnet2to1'')]"}}}, "parameters": {"sharedKey":
- {"value": "abc123"}}, "mode": "Incremental"}}'
+ body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vpn-connection create
+ - network vpn-connection packet-capture stop
Connection:
- keep-alive
- Content-Length:
- - '1262'
- Content-Type:
- - application/json; charset=utf-8
ParameterSetName:
- - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
+ - -g -n --sas-url
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
- accept-language:
- - en-US
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dc324330-b947-484c-b52e-e57d6ca53bea?api-version=2020-11-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_24qyPvzeC0cWRAZn1W1lH6hSMLxSDT51","name":"vpn_connection_deploy_24qyPvzeC0cWRAZn1W1lH6hSMLxSDT51","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7561845652200876625","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-03-04T07:46:54.684632Z","duration":"PT2.2117086S","correlationId":"b2475472-b0ed-4dfa-a034-12a8051d824d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[]}}'
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
headers:
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_24qyPvzeC0cWRAZn1W1lH6hSMLxSDT51/operationStatuses/08585867628730047094?api-version=2020-10-01
cache-control:
- no-cache
content-length:
- - '769'
+ - '30'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:46:55 GMT
+ - Fri, 16 Apr 2021 05:53:43 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-ratelimit-remaining-subscription-writes:
- - '1187'
+ x-ms-arm-service-request-id:
+ - a8d2c318-6a10-4f31-aa8a-e821592437ba
status:
- code: 201
- message: Created
+ code: 200
+ message: OK
- request:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vpn-connection create
+ - network vpn-connection packet-capture stop
Connection:
- keep-alive
ParameterSetName:
- - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
+ - -g -n --sas-url
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585867628730047094?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dc324330-b947-484c-b52e-e57d6ca53bea?api-version=2020-11-01
response:
body:
- string: '{"status":"Running"}'
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '20'
+ - '30'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:47:25 GMT
+ - Fri, 16 Apr 2021 05:53:54 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:
+ - 09e0e55b-b643-4cd8-b2a3-b2b0081f5962
status:
code: 200
message: OK
@@ -6906,42 +6779,48 @@ interactions:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vpn-connection create
+ - network vpn-connection packet-capture stop
Connection:
- keep-alive
ParameterSetName:
- - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
+ - -g -n --sas-url
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585867628730047094?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dc324330-b947-484c-b52e-e57d6ca53bea?api-version=2020-11-01
response:
body:
- string: '{"status":"Succeeded"}'
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '22'
+ - '30'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:47:57 GMT
+ - Fri, 16 Apr 2021 05:54:14 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:
+ - 458a6d8e-e6d9-4d40-b3d6-bf13d847df81
status:
code: 200
message: OK
@@ -6949,42 +6828,51 @@ interactions:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vpn-connection create
+ - network vpn-connection packet-capture stop
Connection:
- keep-alive
ParameterSetName:
- - -g -n --vnet-gateway1 --vnet-gateway2 --shared-key --enable-bgp
+ - -g -n --sas-url
User-Agent:
- - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dc324330-b947-484c-b52e-e57d6ca53bea?api-version=2020-11-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Resources/deployments/vpn_connection_deploy_24qyPvzeC0cWRAZn1W1lH6hSMLxSDT51","name":"vpn_connection_deploy_24qyPvzeC0cWRAZn1W1lH6hSMLxSDT51","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7561845652200876625","parameters":{"sharedKey":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-03-04T07:47:32.970797Z","duration":"PT40.4978736S","correlationId":"b2475472-b0ed-4dfa-a034-12a8051d824d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"connections","locations":["westus"]}]}],"dependencies":[],"outputs":{"resource":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"5cc9b8f7-10f8-4e9e-8709-541db16a9fd7","virtualNetworkGateway1":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw2"},"virtualNetworkGateway2":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/virtualNetworkGateways/vgw1"},"connectionType":"Vnet2Vnet","connectionProtocol":"IKEv2","routingWeight":10,"sharedKey":"abc123","enableBgp":true,"useLocalAzureIpAddress":false,"trafficSelectorPolicies":[],"connectionStatus":"Unknown","ingressBytesTransferred":0,"egressBytesTransferred":0,"dpdTimeoutSeconds":0,"connectionMode":"Default"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_active_active_vnet_vnet_connection000001/providers/Microsoft.Network/connections/vnet2to1"}]}}'
+ string: "{\r\n \"status\": \"Failed\",\r\n \"error\": {\r\n \"code\": \"NoPacketCaptureResponseDataFound\",\r\n
+ \ \"message\": \"An internal error occured. The response did not contain
+ any data. Please check storage for the capture.\",\r\n \"details\": []\r\n
+ \ }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1903'
+ - '237'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 04 Mar 2021 07:47:57 GMT
+ - Fri, 16 Apr 2021 05:54:54 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:
+ - 45d190c8-dfde-48f7-830d-da38ee0be09a
status:
code: 200
message: OK
diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet_gateway_ipsec.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet_gateway_ipsec.yaml
new file mode 100644
index 00000000000..5da06f83fff
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_network_vnet_gateway_ipsec.yaml
@@ -0,0 +1,2769 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --subnet-name
+ User-Agent:
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnet_gateway_ipsec000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001","name":"cli_test_vnet_gateway_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-16T04:56:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 04:56:16 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": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes":
+ ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "GatewaySubnet", "properties":
+ {"addressPrefix": "10.0.0.0/24"}}]}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '211'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --subnet-name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
+ \ \"etag\": \"W/\\\"5d0e9ce4-179d-4d20-bb2a-b0351a7c0e6f\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
+ \ \"resourceGuid\": \"81530830-4d31-4c03-ae57-5f498b1ad9d9\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\",\r\n
+ \ \"etag\": \"W/\\\"5d0e9ce4-179d-4d20-bb2a-b0351a7c0e6f\\\"\",\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\":
+ \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d9222558-8b81-405b-9635-520f63c3a30d?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1415'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 04:56:22 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:
+ - 3f976791-841c-4941-926b-d53c192cf325
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --subnet-name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d9222558-8b81-405b-9635-520f63c3a30d?api-version=2020-11-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:
+ - Fri, 16 Apr 2021 04:56:25 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:
+ - 97278063-227d-4b4d-b77b-fd83c90d54d1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --subnet-name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n
+ \ \"etag\": \"W/\\\"454079ae-0f57-491e-92c3-ee5b111af6ac\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"resourceGuid\": \"81530830-4d31-4c03-ae57-5f498b1ad9d9\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [\r\n {\r\n \"name\": \"GatewaySubnet\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\",\r\n
+ \ \"etag\": \"W/\\\"454079ae-0f57-491e-92c3-ee5b111af6ac\\\"\",\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
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1417'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 04:56:26 GMT
+ etag:
+ - W/"454079ae-0f57-491e-92c3-ee5b111af6ac"
+ 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:
+ - 39ed7db6-390a-4270-9d2a-aced98dc74af
+ 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:
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnet_gateway_ipsec000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001","name":"cli_test_vnet_gateway_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-16T04:56:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 04:56:26 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": "westus", "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:
+ - '138'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\r\n
+ \ \"etag\": \"W/\\\"f36311d4-505e-4806-8bfd-3f3a2a99445b\\\"\",\r\n \"location\":
+ \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
+ \ \"resourceGuid\": \"8a649d75-e953-401a-bec9-12284dc3afd8\",\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/westus/operations/13eb362c-df39-4617-8943-cf43342ab5bd?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '681'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 04:56:29 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:
+ - 27292fb4-c1c6-41ff-9469-4f7cb1e1b667
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
+ 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.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/13eb362c-df39-4617-8943-cf43342ab5bd?api-version=2020-11-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:
+ - Fri, 16 Apr 2021 04:56:30 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:
+ - 276f1d6f-b2b0-4667-9fc0-bc7f50776ae3
+ 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.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\",\r\n
+ \ \"etag\": \"W/\\\"b7d56338-c1d4-4785-ab6c-740070575e79\\\"\",\r\n \"location\":
+ \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"resourceGuid\": \"8a649d75-e953-401a-bec9-12284dc3afd8\",\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:
+ - '682'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 04:56:30 GMT
+ etag:
+ - W/"b7d56338-c1d4-4785-ab6c-740070575e79"
+ 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:
+ - 02ed03c6-057b-4edb-8f0f-1ecf2321e81e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnet_gateway_ipsec000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001","name":"cli_test_vnet_gateway_ipsec000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-16T04:56:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 04:56:32 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": "westus", "properties": {"ipConfigurations": [{"name": "vnetGatewayConfig0",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"},
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1"}}}],
+ "gatewayType": "Vpn", "vpnType": "RouteBased", "activeActive": false, "sku":
+ {"name": "VpnGw2", "tier": "VpnGw2"}, "vpnClientConfiguration": {"vpnClientAddressPool":
+ {"addressPrefixes": ["40.1.0.0/24"]}, "vpnClientProtocols": ["IkeV2", "SSTP"],
+ "radiusServerAddress": "30.1.1.15", "radiusServerSecret": "111_aaa"}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '923'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
+ \ \"etag\": \"W/\\\"46232cfa-ffd7-4d28-8469-4103a42fc539\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"3ab4c080-9e0e-478a-bc21-0bd50669c650\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"46232cfa-ffd7-4d28-8469-4103a42fc539\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"40.1.0.0/24\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"IkeV2\",\r\n \"SSTP\"\r\n ],\r\n \"vpnAuthenticationTypes\":
+ [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\":
+ [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\":
+ \"30.1.1.15\",\r\n \"radiusServerSecret\": \"111_aaa\",\r\n \"radiusServers\":
+ [],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\":
+ {\r\n \"asn\": 0,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\":
+ [\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [],\r\n \"customBgpIpAddresses\":
+ []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n
+ \ }\r\n}"
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '3037'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 04:56:38 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:
+ - 524dda36-2e5f-4abd-8881-9d2f175304c2
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 04:56:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 98144a6a-0767-44e8-bdc7-d2f2ed3c34e8
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 04:56:58 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:
+ - 24f040e7-c243-4850-a66d-669274b74e00
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 04:57:18 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:
+ - d692610b-6a24-46a4-b357-0be8e0377c8c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 04:57:40 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:
+ - 66a2228c-5db2-443c-adc6-61499b1d28db
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 04:58: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:
+ - 2b0728a3-7e24-485a-9224-796c665f5128
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 04:59:00 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:
+ - e465e0ee-679f-407a-a28b-851a156cc9d2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:00:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 504fa653-f2d3-4347-85dd-c92e149cc81d
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:03:00 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:
+ - 604f8566-a3cb-40d4-b15b-1bf01bce7cf0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:04:41 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:
+ - eb50fa59-0fab-401b-bcb3-b9b6a78150ef
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:06:22 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:
+ - fd1a0652-2541-489d-b238-087c2c7738cb
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:08: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:
+ - 392c3732-5e59-49af-b18b-954a3cb60ce9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:09:43 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:
+ - c1837fc2-867a-49ce-b710-d956a8fac961
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:11:22 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:
+ - 29d2df10-56de-46b4-ac09-a1286d2f8857
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:13:03 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:
+ - 96fffe28-f4ac-4552-b171-5f9acf11d82b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:14:43 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:
+ - ec0fef65-ecf0-4626-ad77-2e54647e7d1b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ee4ce4a8-699d-4d17-b487-c2bb6f7c518d?api-version=2020-11-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:
+ - Fri, 16 Apr 2021 05:16:23 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:
+ - 01c0d82a-f7fe-47ec-8b78-f959a2d19b05
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --public-ip-address --vnet --sku --gateway-type --vpn-type --address-prefix
+ --client-protocol --radius-secret --radius-server
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
+ \ \"etag\": \"W/\\\"4277b694-c392-49e5-9614-5d6b37ca6bac\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"3ab4c080-9e0e-478a-bc21-0bd50669c650\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"4277b694-c392-49e5-9614-5d6b37ca6bac\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"40.1.0.0/24\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\":
+ [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\":
+ [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\":
+ {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"totalIngressBytesTransferred\":
+ 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"radiusServerAddress\":
+ \"30.1.1.15\",\r\n \"radiusServerSecret\": \"111_aaa\",\r\n \"radiusServers\":
+ [],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\":
+ {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n
+ \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"168.62.220.193\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3376'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:16:24 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:
+ - aafbd4b0-0a15-45ad-9535-6b93667f82b0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
+ --ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
+ \ \"etag\": \"W/\\\"4277b694-c392-49e5-9614-5d6b37ca6bac\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"3ab4c080-9e0e-478a-bc21-0bd50669c650\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"4277b694-c392-49e5-9614-5d6b37ca6bac\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"40.1.0.0/24\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\":
+ [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\":
+ [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\":
+ {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"totalIngressBytesTransferred\":
+ 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"radiusServerAddress\":
+ \"30.1.1.15\",\r\n \"radiusServerSecret\": \"111_aaa\",\r\n \"radiusServers\":
+ [],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\":
+ {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n
+ \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"168.62.220.193\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3376'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:16:26 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:
+ - afce6ce6-7cd9-446a-a0fd-475fce621065
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1",
+ "location": "westus", "properties": {"ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0",
+ "name": "vnetGatewayConfig0", "properties": {"privateIPAllocationMethod": "Dynamic",
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"},
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1"}}}],
+ "gatewayType": "Vpn", "vpnType": "RouteBased", "vpnGatewayGeneration": "Generation1",
+ "enableBgp": false, "enablePrivateIpAddress": false, "activeActive": false,
+ "sku": {"name": "VpnGw2", "tier": "VpnGw2"}, "vpnClientConfiguration": {"vpnClientAddressPool":
+ {"addressPrefixes": ["40.1.0.0/24"]}, "vpnClientRootCertificates": [], "vpnClientRevokedCertificates":
+ [], "vpnClientProtocols": ["SSTP", "IkeV2"], "vpnAuthenticationTypes": ["Radius"],
+ "vpnClientIpsecPolicies": [{"saLifeTimeSeconds": 7200, "saDataSizeKilobytes":
+ 2048, "ipsecEncryption": "GCMAES256", "ipsecIntegrity": "GCMAES256", "ikeEncryption":
+ "AES256", "ikeIntegrity": "SHA384", "dhGroup": "DHGroup24", "pfsGroup": "PFS24"}],
+ "radiusServerAddress": "30.1.1.15", "radiusServerSecret": "111_aaa", "radiusServers":
+ []}, "bgpSettings": {"asn": 65515, "bgpPeeringAddress": "10.0.0.254", "peerWeight":
+ 0, "bgpPeeringAddresses": [{"ipconfigurationId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0",
+ "customBgpIpAddresses": []}]}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy add
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '2236'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
+ --ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
+ \ \"etag\": \"W/\\\"9905f25e-cb7c-401f-a65f-33a899f16884\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"3ab4c080-9e0e-478a-bc21-0bd50669c650\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"9905f25e-cb7c-401f-a65f-33a899f16884\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"40.1.0.0/24\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\":
+ [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\":
+ [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\":
+ \"30.1.1.15\",\r\n \"radiusServerSecret\": \"111_aaa\",\r\n \"radiusServers\":
+ [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\":
+ 7200,\r\n \"saDataSizeKilobytes\": 2048,\r\n \"ipsecEncryption\":
+ \"GCMAES256\",\r\n \"ipsecIntegrity\": \"GCMAES256\",\r\n \"ikeEncryption\":
+ \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\":
+ \"DHGroup24\",\r\n \"pfsGroup\": \"PFS24\"\r\n }\r\n ]\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\":
+ \"10.0.0.254\",\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\":
+ [\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"168.62.220.193\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5958e89a-a5fa-4c6c-91f8-ab9bf2fc37c9?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '3533'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:16:30 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:
+ - 8e0af13c-33e8-4186-b0eb-96b71bb29a47
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
+ --ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5958e89a-a5fa-4c6c-91f8-ab9bf2fc37c9?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:16:40 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:
+ - 81a4e408-9103-41ce-a9cd-3e4952241cbe
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
+ --ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5958e89a-a5fa-4c6c-91f8-ab9bf2fc37c9?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:17:00 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:
+ - 5736ef92-7633-4939-b434-12e940c42710
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
+ --ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5958e89a-a5fa-4c6c-91f8-ab9bf2fc37c9?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:17:41 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:
+ - c4148906-f3d3-49ed-9463-d6acc927049c
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
+ --ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5958e89a-a5fa-4c6c-91f8-ab9bf2fc37c9?api-version=2020-11-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:
+ - Fri, 16 Apr 2021 05:19:01 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:
+ - 72893bc1-8c26-47e7-a291-f6eeca2211b0
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gateway-name --ike-encryption --ike-integrity --dh-group --ipsec-encryption
+ --ipsec-integrity --pfs-group --sa-lifetime --sa-max-size
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
+ \ \"etag\": \"W/\\\"d575c2bb-584a-485f-bb0a-b73e975e6ab5\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"3ab4c080-9e0e-478a-bc21-0bd50669c650\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"d575c2bb-584a-485f-bb0a-b73e975e6ab5\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"40.1.0.0/24\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\":
+ [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\":
+ [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\":
+ {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"totalIngressBytesTransferred\":
+ 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"radiusServerAddress\":
+ \"30.1.1.15\",\r\n \"radiusServerSecret\": \"111_aaa\",\r\n \"radiusServers\":
+ [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\":
+ 7200,\r\n \"saDataSizeKilobytes\": 2048,\r\n \"ipsecEncryption\":
+ \"GCMAES256\",\r\n \"ipsecIntegrity\": \"GCMAES256\",\r\n \"ikeEncryption\":
+ \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\":
+ \"DHGroup24\",\r\n \"pfsGroup\": \"PFS24\"\r\n }\r\n ]\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\":
+ \"10.0.0.254\",\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\":
+ [\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"168.62.220.193\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3710'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:19: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:
+ - 34e2ea11-c1a0-46e6-9947-2fca84377396
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gateway-name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
+ \ \"etag\": \"W/\\\"d575c2bb-584a-485f-bb0a-b73e975e6ab5\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"3ab4c080-9e0e-478a-bc21-0bd50669c650\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"d575c2bb-584a-485f-bb0a-b73e975e6ab5\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"40.1.0.0/24\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\":
+ [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\":
+ [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\":
+ {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"totalIngressBytesTransferred\":
+ 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"radiusServerAddress\":
+ \"30.1.1.15\",\r\n \"radiusServerSecret\": \"111_aaa\",\r\n \"radiusServers\":
+ [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\":
+ 7200,\r\n \"saDataSizeKilobytes\": 2048,\r\n \"ipsecEncryption\":
+ \"GCMAES256\",\r\n \"ipsecIntegrity\": \"GCMAES256\",\r\n \"ikeEncryption\":
+ \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\":
+ \"DHGroup24\",\r\n \"pfsGroup\": \"PFS24\"\r\n }\r\n ]\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\":
+ \"10.0.0.254\",\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\":
+ [\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"168.62.220.193\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3710'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:19:04 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:
+ - 1e812f88-1eda-415e-b440-010d08e04e88
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy clear
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gateway-name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
+ \ \"etag\": \"W/\\\"d575c2bb-584a-485f-bb0a-b73e975e6ab5\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"3ab4c080-9e0e-478a-bc21-0bd50669c650\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"d575c2bb-584a-485f-bb0a-b73e975e6ab5\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"40.1.0.0/24\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\":
+ [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\":
+ [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\":
+ {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"totalIngressBytesTransferred\":
+ 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"radiusServerAddress\":
+ \"30.1.1.15\",\r\n \"radiusServerSecret\": \"111_aaa\",\r\n \"radiusServers\":
+ [],\r\n \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\":
+ 7200,\r\n \"saDataSizeKilobytes\": 2048,\r\n \"ipsecEncryption\":
+ \"GCMAES256\",\r\n \"ipsecIntegrity\": \"GCMAES256\",\r\n \"ikeEncryption\":
+ \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\":
+ \"DHGroup24\",\r\n \"pfsGroup\": \"PFS24\"\r\n }\r\n ]\r\n
+ \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\":
+ \"10.0.0.254\",\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\":
+ [\r\n {\r\n \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"168.62.220.193\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3710'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:19:06 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:
+ - a3406129-085d-42b9-b42a-f83a4f4e0b81
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1",
+ "location": "westus", "properties": {"ipConfigurations": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0",
+ "name": "vnetGatewayConfig0", "properties": {"privateIPAllocationMethod": "Dynamic",
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"},
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1"}}}],
+ "gatewayType": "Vpn", "vpnType": "RouteBased", "vpnGatewayGeneration": "Generation1",
+ "enableBgp": false, "enablePrivateIpAddress": false, "activeActive": false,
+ "sku": {"name": "VpnGw2", "tier": "VpnGw2"}, "vpnClientConfiguration": {"vpnClientAddressPool":
+ {"addressPrefixes": ["40.1.0.0/24"]}, "vpnClientRootCertificates": [], "vpnClientRevokedCertificates":
+ [], "vpnClientProtocols": ["SSTP", "IkeV2"], "vpnAuthenticationTypes": ["Radius"],
+ "radiusServerAddress": "30.1.1.15", "radiusServerSecret": "111_aaa", "radiusServers":
+ []}, "bgpSettings": {"asn": 65515, "bgpPeeringAddress": "10.0.0.254", "peerWeight":
+ 0, "bgpPeeringAddresses": [{"ipconfigurationId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0",
+ "customBgpIpAddresses": []}]}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy clear
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1989'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g --gateway-name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
+ \ \"etag\": \"W/\\\"62b61c4a-dfdf-4a41-8e7b-694fbc4468e2\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"3ab4c080-9e0e-478a-bc21-0bd50669c650\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"62b61c4a-dfdf-4a41-8e7b-694fbc4468e2\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"40.1.0.0/24\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\":
+ [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\":
+ [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"radiusServerAddress\":
+ \"30.1.1.15\",\r\n \"radiusServerSecret\": \"111_aaa\",\r\n \"radiusServers\":
+ [],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\":
+ {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n
+ \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"168.62.220.193\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7d0ae9ab-f3dc-4e6b-98e8-9c191c4c8bb6?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '3199'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:19: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:
+ - b7ec2518-bc11-4eb6-bb72-344822f7a52c
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy clear
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gateway-name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7d0ae9ab-f3dc-4e6b-98e8-9c191c4c8bb6?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:19: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:
+ - c98d3b43-2ced-4437-ad18-239018ddc496
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy clear
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gateway-name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7d0ae9ab-f3dc-4e6b-98e8-9c191c4c8bb6?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:19:39 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:
+ - b676f148-df40-421e-9ba8-aed2c02ceb6b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy clear
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gateway-name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7d0ae9ab-f3dc-4e6b-98e8-9c191c4c8bb6?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:20:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - bec8dae4-a0bd-4c1f-a3a0-6ff4cf8f5d08
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy clear
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gateway-name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7d0ae9ab-f3dc-4e6b-98e8-9c191c4c8bb6?api-version=2020-11-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:
+ - Fri, 16 Apr 2021 05:21:41 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:
+ - 5b6070aa-2b16-42f8-9841-e9e4c0646868
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy clear
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gateway-name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
+ \ \"etag\": \"W/\\\"f7c9d3ff-6232-4489-bc41-76517bb6a07f\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"3ab4c080-9e0e-478a-bc21-0bd50669c650\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"f7c9d3ff-6232-4489-bc41-76517bb6a07f\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"40.1.0.0/24\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\":
+ [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\":
+ [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\":
+ {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"totalIngressBytesTransferred\":
+ 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"radiusServerAddress\":
+ \"30.1.1.15\",\r\n \"radiusServerSecret\": \"111_aaa\",\r\n \"radiusServers\":
+ [],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\":
+ {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n
+ \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"168.62.220.193\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3376'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:21:42 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:
+ - c005826b-78a0-46a1-af77-2ddec92971bf
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway ipsec-policy list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gateway-name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gw1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1\",\r\n
+ \ \"etag\": \"W/\\\"f7c9d3ff-6232-4489-bc41-76517bb6a07f\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"3ab4c080-9e0e-478a-bc21-0bd50669c650\",\r\n \"packetCaptureDiagnosticState\":
+ \"None\",\r\n \"enablePrivateIpAddress\": false,\r\n \"ipConfigurations\":
+ [\r\n {\r\n \"name\": \"vnetGatewayConfig0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"etag\": \"W/\\\"f7c9d3ff-6232-4489-bc41-76517bb6a07f\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/virtualNetworkGateways/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_vnet_gateway_ipsec000001/providers/Microsoft.Network/publicIPAddresses/pip1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet\"\r\n
+ \ }\r\n }\r\n }\r\n ],\r\n \"natRules\": [],\r\n
+ \ \"enableBgpRouteTranslationForNat\": false,\r\n \"sku\": {\r\n \"name\":
+ \"VpnGw2\",\r\n \"tier\": \"VpnGw2\",\r\n \"capacity\": 2\r\n },\r\n
+ \ \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\":
+ false,\r\n \"activeActive\": false,\r\n \"vpnClientConfiguration\":
+ {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n
+ \ \"40.1.0.0/24\"\r\n ]\r\n },\r\n \"vpnClientProtocols\":
+ [\r\n \"SSTP\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\":
+ [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\":
+ [],\r\n \"vpnClientRevokedCertificates\": [],\r\n \"vpnClientConnectionHealth\":
+ {\r\n \"vpnClientConnectionsCount\": 0,\r\n \"totalIngressBytesTransferred\":
+ 0,\r\n \"totalEgressBytesTransferred\": 0\r\n },\r\n \"radiusServerAddress\":
+ \"30.1.1.15\",\r\n \"radiusServerSecret\": \"111_aaa\",\r\n \"radiusServers\":
+ [],\r\n \"vpnClientIpsecPolicies\": []\r\n },\r\n \"bgpSettings\":
+ {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n
+ \ \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n
+ \ \"ipconfigurationId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/ipConfigurations/vnetGatewayConfig0\",\r\n
+ \ \"defaultBgpIpAddresses\": [\r\n \"10.0.0.254\"\r\n ],\r\n
+ \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\":
+ [\r\n \"168.62.220.193\"\r\n ]\r\n }\r\n ]\r\n
+ \ },\r\n \"vpnGatewayGeneration\": \"Generation1\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3376'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:21:43 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:
+ - 5e62d69e-8238-4dea-a9a9-d17f9947c862
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway vpn-client show-health
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/getVpnClientConnectionHealth?api-version=2020-11-01
+ response:
+ body:
+ string: 'null'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:21:44 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/8c3a74e1-45f3-411d-9ba9-fb3beaeba975?api-version=2020-11-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - e225b4a5-fee8-428f-ae27-3de175c3c8f1
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway vpn-client show-health
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/8c3a74e1-45f3-411d-9ba9-fb3beaeba975?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"value\": []\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '19'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:21:55 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/8c3a74e1-45f3-411d-9ba9-fb3beaeba975?api-version=2020-11-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - e225b4a5-fee8-428f-ae27-3de175c3c8f1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet-gateway show-supported-devices
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n -o
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnet_gateway_ipsec000001/providers/Microsoft.Network/virtualNetworkGateways/gw1/supportedvpndevices?api-version=2020-11-01
+ response:
+ body:
+ string: '""'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2180'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 05:21:56 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:
+ - 73fb916d-de4f-44aa-ae40-401466a6678b
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 200
+ message: OK
+version: 1
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 4537abb56f6..2e24b64b073 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
@@ -3999,9 +3999,17 @@ def test_network_active_active_cross_premise_connection(self, resource_group):
class NetworkActiveActiveVnetScenarioTest(ScenarioTest): # pylint: disable=too-many-instance-attributes
- @ResourceGroupPreparer(name_prefix='cli_test_active_active_vnet_vnet_connection')
- def test_network_active_active_vnet_connection(self, resource_group):
+ def __init__(self, method_name):
+ self.sas_replacer = StorageAccountSASReplacer()
+ super(NetworkActiveActiveVnetScenarioTest, self).__init__(method_name, recording_processors=[
+ self.sas_replacer
+ ])
+ @AllowLargeResponse()
+ @ResourceGroupPreparer(name_prefix='cli_test_active_active_vnet_vnet_connection')
+ @StorageAccountPreparer(name_prefix='clitestvpncnn')
+ def test_network_active_active_vnet_connection(self, resource_group, storage_account):
+ from datetime import datetime, timedelta
self.kwargs.update({
'subnet': 'GatewaySubnet',
'vnet1': 'vnet1',
@@ -4022,9 +4030,19 @@ def test_network_active_active_vnet_connection(self, resource_group):
'conn12': 'vnet1to2',
'conn21': 'vnet2to1',
'bgp_peer1': '10.52.255.253',
- 'bgp_peer2': '10.53.255.253'
+ 'bgp_peer2': '10.53.255.253',
+ 'storage_account': storage_account,
+ 'ctn': self.create_random_name(prefix='clitestvpngw', length=24),
+ 'expiry': (datetime.utcnow() + timedelta(hours=3)).strftime('%Y-%m-%dT%H:%MZ')
})
+ self.cmd('storage container create --account-name {storage_account} --name {ctn}')
+ sas = self.cmd(
+ 'storage blob generate-sas -n src --account-name {storage_account} -c {ctn} --permissions acrwd --expiry {expiry} -otsv').output.strip()
+ self.kwargs['sas_url'] = 'https://{}.blob.azure.com/{}?{}'.format(self.kwargs['storage_account'],
+ self.kwargs['ctn'], sas)
+ self.sas_replacer.add_sas_token(sas)
+
# Create one VNet with two public IPs
self.cmd('network vnet create -g {rg} -n {vnet1} --address-prefix {vnet1_prefix} --subnet-name {subnet} --subnet-prefix {gw1_prefix}')
self.cmd('network public-ip create -g {rg} -n {gw1_ip1}')
@@ -4045,9 +4063,14 @@ def test_network_active_active_vnet_connection(self, resource_group):
# create and connect the VNet gateways
self.cmd('network vpn-connection create -g {rg} -n {conn12} --vnet-gateway1 {gw1} --vnet-gateway2 {gw2} --shared-key {key} --enable-bgp')
self.cmd('network vpn-connection create -g {rg} -n {conn21} --vnet-gateway1 {gw2} --vnet-gateway2 {gw1} --shared-key {key} --enable-bgp')
+ self.cmd('network vpn-connection list-ike-sas -g {rg} -n {conn12}')
+ output = self.cmd('network vpn-connection packet-capture start -g {rg} -n {conn12}').output.strip()
+ self.assertTrue('Successful' in output, 'Expected Successful in output.\nActual: {}'.format(output))
+ # currently we cannot create traffic by cli command. So it will return an error when stop.
+ with self.assertRaisesRegexp(HttpResponseError, 'The response did not contain any data'):
+ self.cmd('network vpn-connection packet-capture stop -g {rg} -n {conn12} --sas-url {sas_url}')
-
-class NetworkVpnGatewayScenarioTest(ScenarioTest, StorageAccountSASReplacer):
+class NetworkVpnGatewayScenarioTest(ScenarioTest):
def __init__(self, method_name):
self.sas_replacer = StorageAccountSASReplacer()
@@ -4243,9 +4266,9 @@ def test_network_vpn_gateway_package_capture(self, resource_group, storage_accou
self.cmd('storage container create --account-name {storage_account} --name {ctn}')
sas = self.cmd(
'storage blob generate-sas -n src --account-name {storage_account} -c {ctn} --permissions acrwd --expiry {expiry} -otsv').output.strip()
- self.sas_replacer.add_sas_token(sas)
self.kwargs['sas_url'] = 'https://{}.blob.azure.com/{}?{}'.format(self.kwargs['storage_account'],
self.kwargs['ctn'], sas)
+ self.sas_replacer.add_sas_token(sas)
self.cmd('network public-ip create -n {ip1} -g {rg}')
self.cmd('network vnet create -g {rg} -n {vnet1} --subnet-name GatewaySubnet --address-prefix 10.0.0.0/16 --subnet-prefix 10.0.0.0/24')
From 75f6c7c7052afa13aff2f1be73a4f98bf9d35b0c Mon Sep 17 00:00:00 2001
From: kai ru <69238381+kairu-ms@users.noreply.github.com>
Date: Fri, 16 Apr 2021 14:20:04 +0800
Subject: [PATCH 19/19] fix style error
---
.../network/tests/latest/test_network_commands.py | 1 +
1 file changed, 1 insertion(+)
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 2e24b64b073..239111ed1c2 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
@@ -4070,6 +4070,7 @@ def test_network_active_active_vnet_connection(self, resource_group, storage_acc
with self.assertRaisesRegexp(HttpResponseError, 'The response did not contain any data'):
self.cmd('network vpn-connection packet-capture stop -g {rg} -n {conn12} --sas-url {sas_url}')
+
class NetworkVpnGatewayScenarioTest(ScenarioTest):
def __init__(self, method_name):