diff --git a/pylintrc b/pylintrc index 2c4ffd80d47..86632a90d2f 100644 --- a/pylintrc +++ b/pylintrc @@ -28,7 +28,7 @@ disable=missing-docstring, [TYPECHECK] # For Azure CLI extensions, we ignore some import errors as they'll be available in the environment of the CLI -ignored-modules=azure,azure.cli,azure.cli.core,azure.cli.core.commands,knack,msrestazure,argcomplete,azure_devtools,isodate +ignored-modules=azure,azure.cli,azure.cli.core,azure.cli.core.commands,knack,msrestazure,argcomplete,azure_devtools,isodate,OpenSSL [FORMAT] max-line-length=120 diff --git a/src/virtual-wan/azext_vwan/_client_factory.py b/src/virtual-wan/azext_vwan/_client_factory.py index e9091ffab01..c07e8c0f7b6 100644 --- a/src/virtual-wan/azext_vwan/_client_factory.py +++ b/src/virtual-wan/azext_vwan/_client_factory.py @@ -30,6 +30,14 @@ def cf_virtual_hub_route_table_v2s(cli_ctx, _): return network_client_route_table_factory(cli_ctx).virtual_hub_route_table_v2s +def cf_vpn_server_config(cli_ctx, _): + return network_client_route_table_factory(cli_ctx).vpn_server_configurations + + +def cf_p2s_vpn_gateways(cli_ctx, _): + return network_client_route_table_factory(cli_ctx).p2s_vpn_gateways + + def cf_vpn_sites(cli_ctx, _): return network_client_factory(cli_ctx).vpn_sites diff --git a/src/virtual-wan/azext_vwan/_help.py b/src/virtual-wan/azext_vwan/_help.py index cecbc2f6678..66609febd52 100644 --- a/src/virtual-wan/azext_vwan/_help.py +++ b/src/virtual-wan/azext_vwan/_help.py @@ -314,3 +314,114 @@ short-summary: Provide a SAS-URL to download the configuration for a VPN site. """ # endregion + +# region VpnServerConfig +helps['network vpn-server-config'] = """ + type: group + short-summary: Manage VPN server configuration. +""" + +helps['network vpn-server-config create'] = """ + type: command + short-summary: Create a VPN server configuration. + examples: + - name: Create a VPN server configuration with VPN auth type + text: | + az network vpn-server-config create -n MyVPNServerConfig -g MyRG --vpn-client-root-certs "ApplicationGatewayAuthCert.cer" --vpn-client-revoked-certs "ApplicationGatewayAuthCert.pem" +""" + +helps['network vpn-server-config list'] = """ + type: command + short-summary: List all VPN server configuration. +""" + +helps['network vpn-server-config show'] = """ + type: command + short-summary: Show the details of a VPN server configuration. +""" + +helps['network vpn-server-config set'] = """ + type: command + short-summary: Set settings of a VPN server configuration. + examples: + - name: Set a VPN server configuration with Radius auth type + text: | + az network vpn-server-config set -n MyVPNServerConfig -g MyRG --radius-client-root-certs "ApplicationGatewayAuthCert.cer" --radius-server-root-certs "ApplicationGatewayAuthCert.pem" --radius-servers address=test1 secret=clitest score=10 --radius-servers address=test2 secret=clitest score=10 +""" + +helps['network vpn-server-config delete'] = """ + type: command + short-summary: Delete a VPN server configuration. +""" + +helps['network vpn-server-config wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the VPN server configuration is met. +""" + +helps['network vpn-server-config ipsec-policy'] = """ + type: group + short-summary: Manage VPN server configuration IPSec policies. +""" + +helps['network vpn-server-config ipsec-policy add'] = """ + type: command + short-summary: Add an IPSec policy to a VPN server configuration. +""" + +helps['network vpn-server-config ipsec-policy list'] = """ + type: command + short-summary: List VPN server configuration IPSec policies. +""" + +helps['network vpn-server-config ipsec-policy remove'] = """ + type: command + short-summary: Remove an IPSec policy from a VPN server configuration. +""" + +helps['network vpn-server-config ipsec-policy wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the IPSec policy of a VPN server configuration is met. +""" +# endregion + +# region VpnServerConfig +helps['network p2s-vpn-gateway'] = """ + type: group + short-summary: Manage point-to-site VPN gateway. +""" + +helps['network p2s-vpn-gateway create'] = """ + type: command + short-summary: Create a point-to-site VPN gateway. + examples: + - name: Create a point-to-site VPN gateway. + text: | + az network p2s-vpn-gateway create -g MyRG -n MyP2SVPNGateway --scale-unit 2 --vhub MyVhub --vpn-server-config MyVPNServerConfig --address-space 10.0.0.0/24 11.0.0.0/24 +""" + +helps['network p2s-vpn-gateway list'] = """ + type: command + short-summary: List all point-to-site VPN gateway. +""" + +helps['network p2s-vpn-gateway show'] = """ + type: command + short-summary: Show the details of a point-to-site VPN gateway. +""" + +helps['network p2s-vpn-gateway update'] = """ + type: command + short-summary: Update settings of a point-to-site VPN gateway. +""" + +helps['network p2s-vpn-gateway delete'] = """ + type: command + short-summary: Delete a point-to-site VPN gateway. +""" + +helps['network p2s-vpn-gateway wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the point-to-site VPN gateway is met. +""" +# endregion diff --git a/src/virtual-wan/azext_vwan/_params.py b/src/virtual-wan/azext_vwan/_params.py index ac1b73ed9b5..28c8480d5ff 100644 --- a/src/virtual-wan/azext_vwan/_params.py +++ b/src/virtual-wan/azext_vwan/_params.py @@ -9,8 +9,9 @@ from azure.cli.core.commands.parameters import ( get_resource_name_completion_list, tags_type, get_location_type, get_three_state_flag, get_enum_type) from azure.cli.core.commands.validators import get_default_location_from_resource_group -from .profiles import CUSTOM_VHUB_ROUTE_TABLE from ._validators import get_network_resource_name_or_id +from .profiles import CUSTOM_VHUB_ROUTE_TABLE +from .action import RadiusServerAddAction # pylint: disable=too-many-locals, too-many-branches, too-many-statements @@ -21,6 +22,8 @@ def load_arguments(self, _): 'IpsecEncryption', 'IpsecIntegrity', 'IkeEncryption', 'IkeIntegrity', 'DhGroup', 'PfsGroup', 'VirtualNetworkGatewayConnectionProtocol') + (VpnGatewayTunnelingProtocol, VpnAuthenticationType) = self.get_models('VpnGatewayTunnelingProtocol', 'VpnAuthenticationType', resource_type=CUSTOM_VHUB_ROUTE_TABLE) + # region VirtualWAN vwan_name_type = CLIArgumentType(options_list='--vwan-name', metavar='NAME', help='Name of the virtual WAN.', id_part='name', completer=get_resource_name_completion_list('Microsoft.Network/virtualWANs')) vhub_name_type = CLIArgumentType(options_list='--vhub-name', metavar='NAME', help='Name of the virtual hub.', id_part='name', completer=get_resource_name_completion_list('Microsoft.Network/networkHubs')) @@ -152,3 +155,44 @@ def load_arguments(self, _): c.argument('virtual_wan_name', vwan_name_type, id_part=None) c.argument('vpn_sites', help='Space-separated list of VPN site names or IDs.', nargs='+', validator=get_network_resource_name_or_id('vpn_sites', 'vpnSites')) # endregion + + # region VpnServerConfigurations + with self.argument_context('network vpn-server-config') as c: + c.argument('vpn_protocols', nargs='+', options_list=['--protocols'], arg_type=get_enum_type(VpnGatewayTunnelingProtocol), help='VPN protocols for the VpnServerConfiguration.') + c.argument('vpn_auth_types', nargs='+', options_list=['--auth-types'], arg_type=get_enum_type(VpnAuthenticationType), help='VPN authentication types for the VpnServerConfiguration.') + c.argument('location', get_location_type(self.cli_ctx), validator=get_default_location_from_resource_group) + c.argument('vpn_server_configuration_name', options_list=['--name', '-n'], help='Name of the Vpn server configuration.') + with self.argument_context('network vpn-server-config', arg_group='AAD Auth') as c: + c.argument('aad_tenant', help='AAD Vpn authentication parameter AAD tenant.') + c.argument('aad_audience', help='AAD Vpn authentication parameter AAD audience.') + c.argument('aad_issuer', help='AAD Vpn authentication parameter AAD issuer.') + with self.argument_context('network vpn-server-config', arg_group='Certificate Auth') as c: + c.argument('vpn_client_root_certs', help='List of VPN client root certificate file paths.', nargs='+') + c.argument('vpn_client_revoked_certs', help='List of VPN client revoked certificate file paths.', nargs='+') + with self.argument_context('network vpn-server-config', arg_group='Radius Auth') as c: + c.argument('radius_client_root_certs', help='List of Radius client root certificate file paths.', nargs='+') + c.argument('radius_server_root_certs', help='List of Radius server root certificate file paths.', nargs='+') + c.argument('radius_servers', nargs='+', action=RadiusServerAddAction, help='Radius Server configuration.') + + with self.argument_context('network vpn-server-config', arg_group='IP Security') as c: + c.argument('sa_life_time_seconds', options_list='--sa-lifetime', help='IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site-to-site VPN tunnel.', type=int) + c.argument('sa_data_size_kilobytes', options_list='--sa-data-size', help='IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for a site-to-site VPN tunnel.', type=int) + c.argument('ipsec_encryption', arg_type=get_enum_type(IpsecEncryption), help='IPSec encryption algorithm (IKE phase 1).') + c.argument('ipsec_integrity', arg_type=get_enum_type(IpsecIntegrity), help='IPSec integrity algorithm (IKE phase 1).') + c.argument('ike_encryption', arg_type=get_enum_type(IkeEncryption), help='IKE encryption algorithm (IKE phase 2).') + c.argument('ike_integrity', arg_type=get_enum_type(IkeIntegrity), help='IKE integrity algorithm (IKE phase 2).') + c.argument('dh_group', arg_type=get_enum_type(DhGroup), help='DH Groups used in IKE Phase 1 for initial SA.') + c.argument('pfs_group', arg_type=get_enum_type(PfsGroup), help='The Pfs Groups used in IKE Phase 2 for new child SA.') + c.argument('index', type=int, help='List index of the ipsec policy(starting with 0).') + # endregion + + # region P2SVpnGateways + with self.argument_context('network p2s-vpn-gateway') as c: + c.argument('address_space', nargs='+', help='Address space for P2S VpnClient. Space-separated list of IP address ranges.') + c.argument('p2s_conn_config_name', options_list=['--config-name'], help='Name or p2s connection configuration.') + c.argument('scale_unit', type=int, help='The scale unit for this VPN gateway.') + c.argument('gateway_name', options_list=['--name', '-n'], help='Name of the P2S Vpn Gateway.') + c.argument('virtual_hub', options_list='--vhub', help='Name or ID of a virtual hub.', validator=get_network_resource_name_or_id('virtual_hub', 'virtualHubs')) + c.argument('vpn_server_config', help='Name or ID of a vpn server configuration.', validator=get_network_resource_name_or_id('vpn_server_config', 'vpnServerConfigurations')) + c.argument('location', get_location_type(self.cli_ctx), validator=get_default_location_from_resource_group) + # endregion diff --git a/src/virtual-wan/azext_vwan/action.py b/src/virtual-wan/azext_vwan/action.py new file mode 100644 index 00000000000..262c7020b06 --- /dev/null +++ b/src/virtual-wan/azext_vwan/action.py @@ -0,0 +1,25 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- +# pylint: disable=protected-access +# pylint: disable=line-too-long +# pylint: disable=too-few-public-methods +import argparse +from knack.util import CLIError +from .profiles import CUSTOM_VHUB_ROUTE_TABLE + + +class RadiusServerAddAction(argparse._AppendAction): + + def __call__(self, parser, namespace, values, keys=None, option_string=None): + RadiusServer = namespace._cmd.get_models('RadiusServer', resource_type=CUSTOM_VHUB_ROUTE_TABLE) + kwargs = {} + for item in values: + try: + key, value = item.split('=', 1) + kwargs['radius_server_' + key] = value + except ValueError: + raise CLIError('usage error: {} address=VALUE, score=VALUE, secret=VALUE'.format(option_string)) + action = RadiusServer(**kwargs) + super(RadiusServerAddAction, self).__call__(parser, namespace, action, option_string) diff --git a/src/virtual-wan/azext_vwan/commands.py b/src/virtual-wan/azext_vwan/commands.py index 873dbb4e006..ef3d3e1204a 100644 --- a/src/virtual-wan/azext_vwan/commands.py +++ b/src/virtual-wan/azext_vwan/commands.py @@ -8,7 +8,9 @@ from .profiles import CUSTOM_VHUB_ROUTE_TABLE from ._client_factory import ( - cf_virtual_wans, cf_virtual_hubs, cf_vpn_sites, cf_vpn_site_configs, cf_vpn_gateways, cf_virtual_hub_route_table_v2s) + cf_virtual_wans, cf_virtual_hubs, cf_vpn_sites, cf_vpn_site_configs, + cf_vpn_gateways, cf_virtual_hub_route_table_v2s, cf_vpn_server_config, + cf_p2s_vpn_gateways) from ._util import ( list_network_resource_property, delete_network_resource_property_entry, get_network_resource_property_entry) @@ -55,6 +57,20 @@ def load_command_table(self, _): min_api='2018-08-01' ) + network_vpn_server_config_sdk = CliCommandType( + operations_tmpl='azext_vwan.vendored_sdks.v2020_04_01.operations#VpnServerConfigurationsOperations.{}', + client_factory=cf_vpn_server_config, + resource_type=CUSTOM_VHUB_ROUTE_TABLE, + min_api='2020-03-01' + ) + + network_p2s_vpn_gateway_sdk = CliCommandType( + operations_tmpl='azext_vwan.vendored_sdks.v2020_04_01.operations#P2sVpnGatewaysOperations.{}', + client_factory=cf_p2s_vpn_gateways, + resource_type=CUSTOM_VHUB_ROUTE_TABLE, + min_api='2020-03-01' + ) + network_util = CliCommandType( operations_tmpl='azext_vwan._util#{}', client_factory=None @@ -141,3 +157,29 @@ def load_command_table(self, _): with self.command_group('network vpn-site', network_vpn_site_config_sdk) as g: g.command('download', 'download') # endregion + + # region VpnServer + with self.command_group('network vpn-server-config', network_vpn_server_config_sdk, resource_type=CUSTOM_VHUB_ROUTE_TABLE) as g: + g.custom_command('create', 'create_vpn_server_config', supports_no_wait=True) + g.custom_command('set', 'create_vpn_server_config', supports_no_wait=True) + # due to service limitation, we cannot support update command right now. + # g.generic_update_command('update', custom_func_name='update_vpn_server_config', supports_no_wait=True, setter_arg_name='vpn_server_configuration_parameters') + g.show_command('show') + g.command('delete', 'delete', confirmation=True) + g.custom_command('list', 'list_vpn_server_config') + g.wait_command('wait') + + with self.command_group('network vpn-server-config ipsec-policy', network_vpn_server_config_sdk, resource_type=CUSTOM_VHUB_ROUTE_TABLE) as g: + g.custom_command('add', 'add_vpn_server_config_ipsec_policy', supports_no_wait=True) + g.custom_command('list', 'list_vpn_server_config_ipsec_policies') + g.custom_command('remove', 'remove_vpn_server_config_ipsec_policy', supports_no_wait=True) + g.wait_command('wait') + + with self.command_group('network p2s-vpn-gateway', network_p2s_vpn_gateway_sdk, resource_type=CUSTOM_VHUB_ROUTE_TABLE) as g: + g.custom_command('create', 'create_p2s_vpn_gateway', supports_no_wait=True) + g.command('delete', 'delete', confirmation=True) + g.custom_command('list', 'list_p2s_vpn_gateways') + g.show_command('show') + g.generic_update_command('update', custom_func_name='update_p2s_vpn_gateway', supports_no_wait=True, setter_arg_name='p2_svpn_gateway_parameters') + g.wait_command('wait') + # endregion diff --git a/src/virtual-wan/azext_vwan/custom.py b/src/virtual-wan/azext_vwan/custom.py index 5304e2e7eb5..960f4f5c66a 100644 --- a/src/virtual-wan/azext_vwan/custom.py +++ b/src/virtual-wan/azext_vwan/custom.py @@ -3,6 +3,12 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- + +import os +import re +import hashlib + +from OpenSSL import crypto from knack.util import CLIError from knack.log import get_logger @@ -26,7 +32,7 @@ def __exit__(self, exc_type, exc_val, exc_tb): pass def update_param(self, prop, value, allow_clear): - if value == '' and allow_clear: + if value in ('', []) and allow_clear: setattr(self.instance, prop, None) elif value is not None: setattr(self.instance, prop, value) @@ -571,3 +577,239 @@ def update_vpn_site(instance, cmd, ip_address=None, virtual_wan=None, tags=None, def list_vpn_sites(cmd, resource_group_name=None): return _generic_list(cmd.cli_ctx, 'vpn_sites', resource_group_name) # endregion + + +# region VPN server configuarions +# pylint: disable=line-too-long +def create_vpn_server_config(cmd, resource_group_name, vpn_server_configuration_name, location=None, + vpn_protocols=None, vpn_auth_types=None, + vpn_client_root_certs=None, vpn_client_revoked_certs=None, + radius_servers=None, radius_client_root_certs=None, radius_server_root_certs=None, + aad_tenant=None, aad_audience=None, aad_issuer=None, no_wait=False): + client = network_client_route_table_factory(cmd.cli_ctx).vpn_server_configurations + (VpnServerConfiguration, + AadAuthenticationParameters, + VpnServerConfigVpnClientRootCertificate, + VpnServerConfigVpnClientRevokedCertificate, + VpnServerConfigRadiusServerRootCertificate, + VpnServerConfigRadiusClientRootCertificate) = cmd.get_models('VpnServerConfiguration', + 'AadAuthenticationParameters', + 'VpnServerConfigVpnClientRootCertificate', + 'VpnServerConfigVpnClientRevokedCertificate', + 'VpnServerConfigRadiusServerRootCertificate', + 'VpnServerConfigRadiusClientRootCertificate') + vpn_server_config = VpnServerConfiguration( + location=location, + vpn_protocols=vpn_protocols, + vpn_authentication_types=vpn_auth_types, + vpn_client_root_certificates=_load_certificates_and_build_name_and_public_cert_data(VpnServerConfigVpnClientRootCertificate, + vpn_client_root_certs), + vpn_client_revoked_certificates=_load_certificates_and_build_name_and_thumbprint(VpnServerConfigVpnClientRevokedCertificate, + vpn_client_revoked_certs), + radius_servers=radius_servers, + radius_client_root_certificates=_load_certificates_and_build_name_and_thumbprint(VpnServerConfigRadiusClientRootCertificate, + radius_client_root_certs), + radius_server_root_certificates=_load_certificates_and_build_name_and_public_cert_data(VpnServerConfigRadiusServerRootCertificate, + radius_server_root_certs), + aad_authentication_parameters=AadAuthenticationParameters( + aad_tenant=aad_tenant, + aad_audience=aad_audience, + aad_issuer=aad_issuer + ) + ) + + return sdk_no_wait(no_wait, client.create_or_update, + resource_group_name, vpn_server_configuration_name, vpn_server_config) + + +# pylint: disable=line-too-long +def update_vpn_server_config(instance, cmd, vpn_protocols=None, vpn_auth_types=None, + vpn_client_root_certs=None, vpn_client_revoked_certs=None, + radius_servers=None, radius_client_root_certs=None, radius_server_root_certs=None, + aad_tenant=None, aad_audience=None, aad_issuer=None): + (VpnServerConfigVpnClientRootCertificate, + VpnServerConfigVpnClientRevokedCertificate, + VpnServerConfigRadiusServerRootCertificate, + VpnServerConfigRadiusClientRootCertificate) = cmd.get_models('VpnServerConfigVpnClientRootCertificate', + 'VpnServerConfigVpnClientRevokedCertificate', + 'VpnServerConfigRadiusServerRootCertificate', + 'VpnServerConfigRadiusClientRootCertificate') + with UpdateContext(instance) as c: + c.update_param('vpn_protocols', vpn_protocols, False) + c.update_param('vpn_authentication_types', vpn_auth_types, False) + c.update_param('vpn_client_root_certificates', _load_certificates_and_build_name_and_public_cert_data(VpnServerConfigVpnClientRootCertificate, vpn_client_root_certs), True) + c.update_param('vpn_client_revoked_certificates', _load_certificates_and_build_name_and_thumbprint(VpnServerConfigVpnClientRevokedCertificate, vpn_client_revoked_certs), True) + c.update_param('radius_servers', radius_servers, True) + c.update_param('radius_client_root_certificates', _load_certificates_and_build_name_and_thumbprint(VpnServerConfigRadiusClientRootCertificate, radius_client_root_certs), True) + c.update_param('radius_server_root_certificates', _load_certificates_and_build_name_and_public_cert_data(VpnServerConfigRadiusServerRootCertificate, radius_server_root_certs), True) + + device_properties = instance.aad_authentication_parameters + with UpdateContext(device_properties) as c: + c.update_param('aad_tenant', aad_tenant, True) + c.update_param('aad_audience', aad_audience, True) + c.update_param('aad_issuer', aad_issuer, False) + + return instance + + +def list_vpn_server_config(cmd, resource_group_name=None): + client = network_client_route_table_factory(cmd.cli_ctx).vpn_server_configurations + if resource_group_name: + return client.list_by_resource_group(resource_group_name) + return client.list() + + +def add_vpn_server_config_ipsec_policy(cmd, resource_group_name, vpn_server_configuration_name, + sa_life_time_seconds, sa_data_size_kilobytes, ipsec_encryption, + ipsec_integrity, ike_encryption, ike_integrity, dh_group, pfs_group, + no_wait=False): + client = network_client_route_table_factory(cmd.cli_ctx).vpn_server_configurations + IpsecPolicy = cmd.get_models('IpsecPolicy') + vpn_server_config = client.get(resource_group_name, vpn_server_configuration_name) + vpn_server_config.vpn_client_ipsec_policies.append( + IpsecPolicy( + 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 + ) + ) + poller = sdk_no_wait(no_wait, client.create_or_update, + resource_group_name, vpn_server_configuration_name, vpn_server_config) + if no_wait: + return poller + from azure.cli.core.commands import LongRunningOperation + return LongRunningOperation(cmd.cli_ctx)(poller).vpn_client_ipsec_policies + + +def list_vpn_server_config_ipsec_policies(cmd, resource_group_name, vpn_server_configuration_name): + client = network_client_route_table_factory(cmd.cli_ctx).vpn_server_configurations + vpn_server_config = client.get(resource_group_name, vpn_server_configuration_name) + return vpn_server_config.vpn_client_ipsec_policies + + +# pylint: disable=inconsistent-return-statements +def remove_vpn_server_config_ipsec_policy(cmd, resource_group_name, vpn_server_configuration_name, index, no_wait=False): + client = network_client_route_table_factory(cmd.cli_ctx).vpn_server_configurations + vpn_server_config = client.get(resource_group_name, vpn_server_configuration_name) + try: + vpn_server_config.vpn_client_ipsec_policies.pop(index) + except IndexError: + raise CLIError('invalid index: {}. Index can range from 0 to {}'.format(index, len(vpn_server_config.vpn_client_ipsec_policies) - 1)) + poller = sdk_no_wait(no_wait, client.create_or_update, + resource_group_name, vpn_server_configuration_name, vpn_server_config) + if no_wait: + return poller + from azure.cli.core.commands import LongRunningOperation + return LongRunningOperation(cmd.cli_ctx)(poller).vpn_client_ipsec_policies + + +def create_p2s_vpn_gateway(cmd, resource_group_name, gateway_name, virtual_hub, + scale_unit, location=None, tags=None, p2s_conn_config_name='P2SConnectionConfigDefault', + vpn_server_config=None, address_space=None, no_wait=False): + client = network_client_route_table_factory(cmd.cli_ctx).p2s_vpn_gateways + (P2SVpnGateway, + SubResource, + P2SConnectionConfiguration, + AddressSpace) = cmd.get_models('P2SVpnGateway', + 'SubResource', + 'P2SConnectionConfiguration', + 'AddressSpace') + gateway = P2SVpnGateway( + location=location, + tags=tags, + virtual_hub=SubResource(id=virtual_hub) if virtual_hub else None, + vpn_gateway_scale_unit=scale_unit, + vpn_server_configuration=SubResource(id=vpn_server_config) if vpn_server_config else None, + p2_sconnection_configurations=[ + P2SConnectionConfiguration( + vpn_client_address_pool=AddressSpace( + address_prefixes=address_space + ), + name=p2s_conn_config_name + ) + ] + ) + return sdk_no_wait(no_wait, client.create_or_update, + resource_group_name, gateway_name, gateway) + + +def update_p2s_vpn_gateway(instance, cmd, tags=None, scale_unit=None, + vpn_server_config=None, address_space=None, p2s_conn_config_name=None,): + (SubResource, + P2SConnectionConfiguration, + AddressSpace) = cmd.get_models('SubResource', + 'P2SConnectionConfiguration', + 'AddressSpace') + with UpdateContext(instance) as c: + c.update_param('tags', tags, True) + c.update_param('vpn_gateway_scale_unit', scale_unit, False) + c.update_param('vpn_server_configuration', SubResource(id=vpn_server_config) if vpn_server_config else None, True) + c.update_param('p2_sconnection_configurations', [ + P2SConnectionConfiguration( + vpn_client_address_pool=AddressSpace( + address_prefixes=address_space + ), + name=p2s_conn_config_name + ) + ], False) + + return instance + + +def list_p2s_vpn_gateways(cmd, resource_group_name=None): + client = network_client_route_table_factory(cmd.cli_ctx).p2s_vpn_gateways + if resource_group_name: + return client.list_by_resource_group(resource_group_name) + return client.list() + + +def _load_cert_file(file_path): + cer_data = None + pem_data = None + if os.path.splitext(file_path)[1] in ['.pem']: + with open(file_path, "rb") as f: + pem_data = f.read() + x509 = crypto.load_certificate(crypto.FILETYPE_PEM, pem_data) + cer_data = crypto.dump_certificate(crypto.FILETYPE_ASN1, x509) + elif os.path.splitext(file_path)[1] in ['.cer', '.cert']: + with open(file_path, "rb") as f: + cer_data = f.read() + x509 = crypto.load_certificate(crypto.FILETYPE_ASN1, cer_data) + pem_data = crypto.dump_certificate(crypto.FILETYPE_PEM, x509) + return cer_data, pem_data + + +def _load_certificates_and_build_name_and_thumbprint(model, file_paths_list): + if file_paths_list is None: + return None + certificates = [] + for file_path in file_paths_list: + kwargs = {} + cer_data, _ = _load_cert_file(file_path) + kwargs['name'] = os.path.splitext(os.path.basename(file_path))[0] + kwargs['thumbprint'] = hashlib.sha1(cer_data).hexdigest() + certificates.append(model(**kwargs)) + return certificates + + +def _load_certificates_and_build_name_and_public_cert_data(model, file_paths_list): + if file_paths_list is None: + return None + certificates = [] + for file_path in file_paths_list: + if not os.path.exists(file_path): + continue + kwargs = {} + _, pem_data = _load_cert_file(file_path) + kwargs['name'] = os.path.splitext(os.path.basename(file_path))[0] + match = re.search(r'\-+BEGIN CERTIFICATE.+\-+(?P[^-]+)\-+END CERTIFICATE.+\-+', + pem_data.decode(), re.I) + kwargs['public_cert_data'] = match.group('public').strip() + certificates.append(model(**kwargs)) + return certificates +# endregion diff --git a/src/virtual-wan/azext_vwan/tests/latest/data/ApplicationGatewayAuthCert.cer b/src/virtual-wan/azext_vwan/tests/latest/data/ApplicationGatewayAuthCert.cer new file mode 100644 index 00000000000..2f7baf68562 Binary files /dev/null and b/src/virtual-wan/azext_vwan/tests/latest/data/ApplicationGatewayAuthCert.cer differ diff --git a/src/virtual-wan/azext_vwan/tests/latest/data/ApplicationGatewayAuthCert.pem b/src/virtual-wan/azext_vwan/tests/latest/data/ApplicationGatewayAuthCert.pem new file mode 100644 index 00000000000..533278815ac --- /dev/null +++ b/src/virtual-wan/azext_vwan/tests/latest/data/ApplicationGatewayAuthCert.pem @@ -0,0 +1,20 @@ +-----BEGIN CERTIFICATE----- +MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAw +MS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAx +MB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBw +bGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcN +AQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJ +Sc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x ++6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/ +xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezO +qbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/ +7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYD +VR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0 +aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/Whcow +DQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT +3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pR +LbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5yg +CRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjuj +ZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG +7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8= +-----END CERTIFICATE----- diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_p2s_vpn_gateway_basic_scenario.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_p2s_vpn_gateway_basic_scenario.yaml new file mode 100644 index 00000000000..269e578b6c8 --- /dev/null +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_p2s_vpn_gateway_basic_scenario.yaml @@ -0,0 +1,18631 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vwan create + Connection: + - keep-alive + ParameterSetName: + - -n -g --type + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vhub_connection000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001","name":"cli_test_azure_vhub_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-05T08:50:58Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '471' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:51: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"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vwan create + Connection: + - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --type + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2018-08-01 + response: + body: + string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n + \ \"etag\": \"W/\\\"4aa14d5d-0ddf-4750-bfc9-d48c37a17d1b\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": + false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"allowVnetToVnetTraffic\": + true,\r\n \"office365LocalBreakoutCategory\": \"None\"\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/9bb1d2a0-7e99-4b4d-830a-a2774d532775?api-version=2018-08-01 + cache-control: + - no-cache + content-length: + - '585' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:51:07 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: + - d4b71207-a848-4a26-af34-19cc68afbdf6 + 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 vwan create + Connection: + - keep-alive + ParameterSetName: + - -n -g --type + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9bb1d2a0-7e99-4b4d-830a-a2774d532775?api-version=2018-08-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, 05 Jun 2020 08:51: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: + - f98db6a2-2477-47b1-9535-3b984840b241 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vwan create + Connection: + - keep-alive + ParameterSetName: + - -n -g --type + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2018-08-01 + response: + body: + string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n + \ \"etag\": \"W/\\\"fbb37232-d872-4985-89cd-1573f5dbe70e\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": + false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"allowVnetToVnetTraffic\": + true,\r\n \"office365LocalBreakoutCategory\": \"None\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '586' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:51:19 GMT + etag: + - W/"fbb37232-d872-4985-89cd-1573f5dbe70e" + 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: + - 6635d4ce-59c7-417a-931f-c274feea6e75 + status: + code: 200 + message: OK +- request: + body: 'b''{"location": "westus", "properties": {"virtualWan": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan"}, + "addressPrefix": "10.5.0.0/16"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + Content-Length: + - '290' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2018-08-01 + response: + body: + string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n + \ \"etag\": \"W/\\\"703b3cfe-34c6-488d-8929-1d3952542dc2\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualNetworkConnections\": + [],\r\n \"addressPrefix\": \"10.5.0.0/16\",\r\n \"virtualRouterIps\": + [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n + \ }\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/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-01 + cache-control: + - no-cache + content-length: + - '816' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:51:24 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: + - ca7c6a2d-a721-4263-ba89-260073287477 + 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 vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:51: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: + - eaca07dc-e9c5-4a21-91f4-5a7a038dad7c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:51: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: + - 50cac6a9-db05-41ac-a3ee-8261b3000877 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:51: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: + - cf38121b-9de5-4cd9-aa16-4860eacbdbac + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:52: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: + - 5d49d6f8-b26e-41b8-b53b-8c004372c3f4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:52: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: + - 8b9890bd-eff8-498a-a6dc-39c36e4ef0bc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:52: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: + - a636ef0f-690f-4461-98a0-64861c305b7d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:52: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: + - af06b391-1d08-4262-8bba-ce3a8ae1547b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:52: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: + - f10b169b-4154-44e7-84d4-03f4180d82f6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:53: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: + - 71009816-a1ba-4532-9147-e79d3e1a6124 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:53: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: + - 0e073db8-ade1-4542-aa60-e3c61efe45f8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:53: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: + - 1732dbc6-6e93-413f-9df9-3c45f65d9410 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:53: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: + - e68c2fd7-1a6d-445a-b3bd-e17a7626c014 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:53: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: + - 9a9a39a7-212a-485d-bcbd-5069c6e9a32a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:53: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: + - d49fdd23-994e-465e-a6ad-c544fc26dcca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:54: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: + - 04cd41c9-be91-4f6b-905e-b624c05814b8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:54: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: + - 5ba37a6f-abeb-4bb3-b63e-0966fa9b3072 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:54: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: + - 0bd665d1-e9ed-4f02-a04f-8e0f0d12af30 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:54: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: + - fab939cb-d481-4fc4-be5b-ea841ce24e54 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb340e21-ffa9-4c0e-969c-341173228072?api-version=2018-08-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, 05 Jun 2020 08:54: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: + - 004267dc-1646-41d2-aaba-4d5bb462232c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2018-08-01 + response: + body: + string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n + \ \"etag\": \"W/\\\"2aa9ec87-24bf-4377-a790-bee1ae40a07f\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualNetworkConnections\": + [],\r\n \"addressPrefix\": \"10.5.0.0/16\",\r\n \"virtualRouterIps\": + [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\r\n + \ }\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '817' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08: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: + - ff0369cf-e49d-4350-a455-7d93622a04ca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vpn-client-root-certs --vpn-client-revoked-certs + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vhub_connection000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001","name":"cli_test_azure_vhub_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-05T08:50:58Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '471' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:54:55 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": {"vpnClientRootCertificates": [{"name": + "ApplicationGatewayAuthCert", "publicCertData": "MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAw\nMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAx\nMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBw\nbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcN\nAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJ\nSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x\n+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/\nxQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezO\nqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/\n7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYD\nVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0\naW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/Whcow\nDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT\n3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pR\nLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5yg\nCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjuj\nZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG\n7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8="}], + "vpnClientRevokedCertificates": [{"name": "ApplicationGatewayAuthCert", "thumbprint": + "ef6c937b5935e25941f2ea271d38f90dfdb20953"}], "aadAuthenticationParameters": + {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config create + Connection: + - keep-alive + Content-Length: + - '1468' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --vpn-client-root-certs --vpn-client-revoked-certs + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"4e3e4e32-958b-4410-abeb-9f79f26720c0\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": + [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": + \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAw\\nMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAx\\nMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBw\\nbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcN\\nAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJ\\nSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x\\n+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/\\nxQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezO\\nqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/\\n7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYD\\nVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0\\naW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/Whcow\\nDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT\\n3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pR\\nLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5yg\\nCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjuj\\nZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG\\n7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n + \ }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n + \ \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": + \"ef6c937b5935e25941f2ea271d38f90dfdb20953\"\r\n }\r\n ],\r\n \"radiusServers\": + [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"vpnClientIpsecPolicies\": + []\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/3a162e1b-9079-4a17-bbfa-44880c414d14?api-version=2020-04-01 + cache-control: + - no-cache + content-length: + - '2260' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:54:58 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: + - aa9b3ca3-8cae-4b38-8a4f-6dea95b45d3e + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vpn-client-root-certs --vpn-client-revoked-certs + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3a162e1b-9079-4a17-bbfa-44880c414d14?api-version=2020-04-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, 05 Jun 2020 08:55: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: + - 75011d02-8c35-4bef-b870-da57673a29cb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vpn-client-root-certs --vpn-client-revoked-certs + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"7eee1532-1817-4699-9a2f-d650833a0b6f\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": + [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": + \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAw\\nMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAx\\nMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBw\\nbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcN\\nAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJ\\nSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x\\n+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/\\nxQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezO\\nqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/\\n7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYD\\nVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0\\naW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/Whcow\\nDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT\\n3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pR\\nLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5yg\\nCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjuj\\nZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG\\n7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n + \ }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n + \ \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": + \"ef6c937b5935e25941f2ea271d38f90dfdb20953\"\r\n }\r\n ],\r\n \"radiusServers\": + [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2261' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:55:09 GMT + etag: + - W/"7eee1532-1817-4699-9a2f-d650833a0b6f" + 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: + - b72b07fb-ad52-48b3-b318-917f37cbc0c0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vpn-client-root-certs --vpn-client-revoked-certs + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vhub_connection000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001","name":"cli_test_azure_vhub_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-05T08:50:58Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '471' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:55:11 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": {"vpnClientRootCertificates": [{"name": + "ApplicationGatewayAuthCert", "publicCertData": "MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAw\nMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAx\nMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBw\nbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcN\nAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJ\nSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x\n+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/\nxQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezO\nqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/\n7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYD\nVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0\naW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/Whcow\nDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT\n3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pR\nLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5yg\nCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjuj\nZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG\n7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8="}], + "vpnClientRevokedCertificates": [{"name": "ApplicationGatewayAuthCert", "thumbprint": + "ef6c937b5935e25941f2ea271d38f90dfdb20953"}], "aadAuthenticationParameters": + {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config create + Connection: + - keep-alive + Content-Length: + - '1468' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --vpn-client-root-certs --vpn-client-revoked-certs + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2\",\r\n + \ \"etag\": \"W/\\\"d7713567-4715-4330-8587-5e91ca6532f7\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": + [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": + \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAw\\nMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAx\\nMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBw\\nbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcN\\nAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJ\\nSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x\\n+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/\\nxQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezO\\nqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/\\n7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYD\\nVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0\\naW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/Whcow\\nDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT\\n3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pR\\nLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5yg\\nCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjuj\\nZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG\\n7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n + \ }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n + \ \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": + \"ef6c937b5935e25941f2ea271d38f90dfdb20953\"\r\n }\r\n ],\r\n \"radiusServers\": + [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"vpnClientIpsecPolicies\": + []\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/e4df31d1-8398-4895-92cc-8368e9b9d243?api-version=2020-04-01 + cache-control: + - no-cache + content-length: + - '2262' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:55:13 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: + - 9a2b8cbb-9984-4133-99eb-d228400b165e + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vpn-client-root-certs --vpn-client-revoked-certs + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e4df31d1-8398-4895-92cc-8368e9b9d243?api-version=2020-04-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, 05 Jun 2020 08:55: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: + - 8f4bbb46-08e7-4b68-b6e1-f159006d08f5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vpn-client-root-certs --vpn-client-revoked-certs + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2\",\r\n + \ \"etag\": \"W/\\\"8fe654ef-4e18-46df-bf82-6f3a6b80683e\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": + [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": + \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAw\\nMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAx\\nMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBw\\nbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcN\\nAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJ\\nSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x\\n+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/\\nxQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezO\\nqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/\\n7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYD\\nVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0\\naW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/Whcow\\nDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT\\n3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pR\\nLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5yg\\nCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjuj\\nZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG\\n7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n + \ }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n + \ \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": + \"ef6c937b5935e25941f2ea271d38f90dfdb20953\"\r\n }\r\n ],\r\n \"radiusServers\": + [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2263' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:55:25 GMT + etag: + - W/"8fe654ef-4e18-46df-bf82-6f3a6b80683e" + 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: + - cab4391c-f443-439c-a1a6-019c72425d6d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vhub --vpn-server-config --address-space --no-wait + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vhub_connection000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001","name":"cli_test_azure_vhub_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-05T08:50:58Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '471' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:55: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: 'b''{"location": "westus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub"}, + "p2SConnectionConfigurations": [{"properties": {"vpnClientAddressPool": {"addressPrefixes": + ["10.0.0.0/24", "11.0.0.0/24"]}}, "name": "P2SConnectionConfigDefault"}], "vpnGatewayScaleUnit": + 2, "vpnServerConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig"}}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway create + Connection: + - keep-alive + Content-Length: + - '702' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --scale-unit --vhub --vpn-server-config --address-space --no-wait + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\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/d73b8505-fbd2-4262-be0c-fcc0639a39bb?api-version=2020-04-01 + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:55:30 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: + - 9d6eac88-abc6-42dc-aa4e-7022999386a9 + 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 p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:55:31 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - a6c9e3d8-ca3d-4318-9f53-217b520b73ee + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:56:01 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 7ed75412-13b3-4c8a-8578-78efc0bd8bda + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:56:32 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - cb603b1d-3ec0-40d3-a2a8-648c775f81b2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:57:02 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 13403989-fbf5-453d-8f73-2441a5c8ab82 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:57:33 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - d2ecd5c9-d42d-4f57-877e-ab8a10a740cc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:58:03 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - d7cf128e-9dd2-435e-b17d-e7139aa5f3d4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:58:33 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 627a1760-7bee-47b7-ba35-cec40a617224 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:59:03 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 6eac7ba9-295b-470e-aaf0-7462df8226c3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 08:59:34 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 44c9a445-b360-4729-a0f2-44e6b3eedfa8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:00:05 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 1c44b4f6-db01-4789-8206-288687c79554 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:00:35 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - c94f166b-4293-4de9-a8e0-5b82c92e720a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:01:05 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - c74da4a1-c16f-4da8-a227-736f86cc5d6d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:01:36 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - e6a950e9-759e-4490-bec1-02c47e6fa5ff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:02:06 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - d7214b58-835f-403e-8450-7e7c9a93a172 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:02:36 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 2281e49f-7758-4cb7-9787-edf330c781a4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:03:07 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 8f770fa8-18d7-45ce-b352-16f41f7f7a75 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:03:37 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - a77a4631-bf60-4712-8f28-302d1fcf46c9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:04:07 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 9279319c-12ff-4c4e-83d4-4dc14a7b22e9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:04:37 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - cb132c86-beec-4d54-994d-d8c197490850 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:05:08 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - cd9fe7ed-df56-4ec7-a893-fe12c0e185b8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:05:39 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - f631dfb5-69bb-439a-8a8f-3a29aa03a655 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:06:09 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - cdc4e5c2-e4bb-4d5f-a392-1318139f6cd9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:06:39 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 4b6340d2-e531-4f47-a8fb-ab4c14338b19 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:07:09 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - c584a7de-c0b4-46c0-ad59-79002d7219b3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:07:40 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - e482cfac-e535-411f-a559-bd8128ab5375 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:08:10 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - cf411254-7285-4aac-adee-c7c4fc47d288 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:08:40 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 2d6d14d1-5644-42c3-a5e8-d35e3c5d1b91 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:09:12 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 1fb15402-76b0-4c82-8183-96a0d18ecbc3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:09:42 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - d6d76f8e-0fb2-491f-bddc-3793abf75b31 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:10:12 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - b9f67293-08a1-4f0f-a1d6-eca112d760e5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:10:42 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 555103b9-8c1c-409e-9993-719154c9403f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:11:12 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - fa45000b-1307-4871-82de-15e3978ca54a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:11:43 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - daf31d83-7fdc-4638-95fa-3ab5bc7e3c58 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:12:13 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 191299f3-dce7-4be3-a309-825ab8d97269 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:12:43 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - d29b4269-d0d0-4416-8896-2ecb3fe8fcfa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:13:14 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 8c771585-3942-4285-b43c-922ee0163103 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:13:44 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 134b242c-b222-463e-9831-7eebf39f3248 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:14:14 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - cf175694-1d10-4204-b0a7-a38131feeb04 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:14:44 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 1e08509f-5d9b-4f2e-a628-b29dee0e0195 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:15:15 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 854792bf-af73-495b-a9f2-23e3c3e60670 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:15:46 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 51ad8ee5-c636-4012-b479-b5ca04947d68 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:16:16 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - fdaed527-fedb-4b65-91e3-462bfd2f7486 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:16:46 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 5efafbaa-859c-4918-a205-67f5080e7e08 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:17:16 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - b7161c0e-3e46-4cf1-9eff-60fdcff929d9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:17:46 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - e9df2b83-a6a9-4535-8eca-5aacf66a1deb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:18:17 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 87e28a2a-a861-45d8-80ef-1b28c17b39e2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:18:48 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - d9d64934-b732-4f8f-913f-557e6eb903c6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:19:18 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 83ecab5e-9c9f-49af-95f1-1664bcde452f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:19:49 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - b4a205d5-39fc-4098-a61c-11314a6611e2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:20:20 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 602a448d-e76b-4597-801b-2a6087da3d65 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:20:50 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 181987b0-5ee5-467b-b2a1-2d6e77f8a00e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:21:20 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 4f4b63ec-6009-4250-8d98-0415cd89be65 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:21:50 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 0dc3215c-dedb-462c-b87a-793353989ac1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:22:21 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - d6b1ad6d-9ae4-4e9d-b7ee-042cbec520cb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:22:51 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 4a65886e-c117-46e5-ac63-3f67558d4a30 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:23:21 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - 82a4cee2-9d8a-43b7-b911-9ad5c735d287 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"3a663d10-ecf7-4131-92f3-fd38571253d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:23:52 GMT + etag: + - W/"3a663d10-ecf7-4131-92f3-fd38571253d1" + 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: + - b8bde5ff-8175-4598-87e9-1ef9d84277d4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"e7081130-cfff-4628-8d11-4c37144b9161\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"e7081130-cfff-4628-8d11-4c37144b9161\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:24:23 GMT + etag: + - W/"e7081130-cfff-4628-8d11-4c37144b9161" + 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: + - e51ab430-8217-4b71-a509-40de28fbdf09 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"e7081130-cfff-4628-8d11-4c37144b9161\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"e7081130-cfff-4628-8d11-4c37144b9161\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:24:53 GMT + etag: + - W/"e7081130-cfff-4628-8d11-4c37144b9161" + 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: + - cfec369c-7515-4f95-9b8e-72141e5ed69d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"e7081130-cfff-4628-8d11-4c37144b9161\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"e7081130-cfff-4628-8d11-4c37144b9161\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2117' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:25:23 GMT + etag: + - W/"e7081130-cfff-4628-8d11-4c37144b9161" + 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: + - 32057e43-431b-4552-bf10-0b4de076aeb9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"579b6fed-dc3e-4fec-be13-ac11747e33fa\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"579b6fed-dc3e-4fec-be13-ac11747e33fa\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2119' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:25:53 GMT + etag: + - W/"579b6fed-dc3e-4fec-be13-ac11747e33fa" + 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: + - 2c8f1f1b-6e43-42c9-a3d2-77f0a5adf0b3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"579b6fed-dc3e-4fec-be13-ac11747e33fa\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"P2SConnectionConfigDefault\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/P2SConnectionConfigDefault\",\r\n + \ \"etag\": \"W/\\\"579b6fed-dc3e-4fec-be13-ac11747e33fa\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/24\",\r\n \"11.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 2,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2119' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:25:54 GMT + etag: + - W/"579b6fed-dc3e-4fec-be13-ac11747e33fa" + 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: + - 2868002e-e135-46fb-91f4-ece2f9ca4fc9 + status: + code: 200 + message: OK +- request: + body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway", + "location": "westus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub"}, + "p2SConnectionConfigurations": [{"properties": {"vpnClientAddressPool": {"addressPrefixes": + ["13.0.0.0/24", "12.0.0.0/24"]}}, "name": "False"}], "vpnGatewayScaleUnit": + 3, "vpnServerConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2"}}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + Content-Length: + - '896' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"2d548292-6d36-4005-b271-3fc1026f2a1e\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"False\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/False\",\r\n + \ \"etag\": \"W/\\\"2d548292-6d36-4005-b271-3fc1026f2a1e\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"13.0.0.0/24\",\r\n \"12.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-01 + cache-control: + - no-cache + content-length: + - '2076' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:25: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: + - 9ddf594d-7e1c-4b9c-81ff-cea3ef43e685 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:26: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: + - a12e9790-5d21-4c15-867d-287f80f68f59 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:26:17 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: + - 70fb8b97-e2a7-4edf-84a3-8d7f5a64fad1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:26: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: + - 40b56563-2b13-40df-92db-43fdde91632c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:26: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: + - 1b1e17ff-16e6-43af-a9eb-c151b42ab42b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:26: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: + - ed5989a1-57ef-4eb2-bf42-abc487f59ee4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:26: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: + - 26d9fb3e-8bdb-46df-a15c-4c238189c52e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:27: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: + - e4a9ea67-7f0f-4b57-aa69-52a9636c2b56 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:27: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: + - 3c4904f9-3ec1-422a-b1a7-7ddc870ea7de + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:27: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: + - 97856593-1ebf-4cbe-a51d-ea58ed6ff9be + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:27: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: + - 71fd7f2e-42cd-4fdf-a110-5608ab5384d6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:27: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: + - 32b61d6c-b6f0-49d9-8004-9a706d267505 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:28: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: + - 91f66d20-8f55-4d51-b019-9be6c824193d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:28: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: + - 91cdf502-c996-4e8b-ad26-51f6a8309bbe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:28: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: + - 58dc538e-3b41-485e-9740-89ac08aff843 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:28: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: + - adc2513b-634d-44e7-8946-c5207cf1043f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:28: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: + - ac421cad-5882-46de-9130-e784f1fbcb2a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:28: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: + - bbbe8fba-85d1-4068-ac38-b5c4b6996101 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:29: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: + - b017dd2a-d427-4f97-93fe-b99599eb591a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:29: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: + - 3831747e-20ed-4f56-a586-c76f0b54f044 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:29: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: + - 4056ba30-cdc6-460f-9d74-a3fdcf023ff4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:29: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: + - ffab2163-914f-4e65-aa6a-bdb2734a2058 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:29: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: + - 3b9cf658-0243-48c5-ad4e-83cdbf017caa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:29: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: + - 63e40782-bb8e-470b-9d75-7c76cfc960c7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:30: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: + - 8280ae8a-d6c6-4604-a4a5-42b7d88f6d6a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09: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: + - 0ab74de9-11b4-409b-af55-c527ff5f14d0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:30: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: + - 3c98cd23-d23d-48b1-9b5e-eb7563763958 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:30: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: + - 3329f18d-efaf-4e8b-9572-f47415fb3509 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:30: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: + - f4c58509-3f05-42be-8e53-7c9c9c7246b8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:30: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: + - 41993ab4-b7fe-4743-9925-d4267249696b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:31: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: + - 25deb130-833b-493d-8316-b2096f81abb9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:31:17 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: + - f501ef7f-5cb6-4407-a9d0-eb04b4a2d7e7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:31: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: + - 5f9b48cd-8d23-4b39-9cdc-af23b3526072 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:31: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: + - 289b28cf-4956-42b1-9a3e-3dcd321f3bc7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:31: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: + - 688b0cb0-30f3-4a5a-8cf0-74e8b18b2bc6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:31: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: + - e7509613-4a2c-43d2-adb1-82e78c92e06e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:32: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: + - 3cdfe7ed-bc22-466a-ac34-cb6af988fdab + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:32: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: + - 35a70fbd-c67e-4bb9-8899-92f9cb7bad57 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:32: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: + - f2ed1fbf-feae-45a0-84b1-349523d9fe8a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:32: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: + - aa0ec90e-7c15-46b6-9687-6ead796976d1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:32: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: + - 4db0e8e7-1741-4482-abae-53225251266a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:33: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: + - dab5903a-cd0c-415f-857d-5ac5b595c260 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:33: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: + - 3e9843cb-83a7-41a4-ae91-c00bbe44c15b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:33: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: + - edfb77ee-5a38-4d76-bbbb-034815007491 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:33: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: + - 20596bfc-1ec7-468d-8ce3-608a4431519e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:33: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: + - 1ef4c4c0-d161-4bc8-921a-0c10be01a3b1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:33: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: + - 239ab5a7-6275-4eb1-9d1f-8f3198e02426 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:34: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: + - 7a1bd130-bb72-4797-b8f8-0971214b7dd8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:34: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: + - a8a60a6f-ab3d-49a0-bf49-c3116653d744 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:34: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: + - f28b9f68-f220-4164-8b17-d99de333e381 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:34: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: + - f0167530-3b2e-430d-8d21-7ff72ef8cb11 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:34: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: + - 231492b9-b732-4921-87f9-4fbb5f469a40 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:34: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: + - 2bd0c7ab-5f60-4955-b0f7-814a0da1ca94 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:35: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: + - 18154fb8-dcbb-4427-9c52-acdf48a6fb90 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:35: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: + - 2c319a8f-3a6f-4ea6-b691-ea151bbe1c82 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:35: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: + - f4e90ed1-52c8-46ac-a8f0-cb4e433a10b7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:35: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: + - 1c76cd39-7911-4b0c-9626-81dfa7aa19cc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:35: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: + - bda9569b-da7d-40c7-9fec-cdaf356d047c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:35: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: + - 9a03bea1-fa4a-4760-84c9-e07933a25820 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:36: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: + - 49468671-0a13-446a-a563-90b2410d578d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:36:17 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: + - 768b2e4a-2af1-40fc-b66b-5018cc1ba4d4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:36: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: + - 4145364f-9d2d-40ed-bcf5-2d68a058cac5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:36: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: + - 6ece3a7d-5423-41ce-b7d0-ce63594d0f11 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:36: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: + - 50ffcea8-9658-471b-8989-99d2cbda2f35 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:36: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: + - 0f397505-b344-4ca6-8c90-9e5ccf62f377 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:37: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: + - 57a2f14d-ae05-4f02-9f98-3a519600cb1b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:37: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: + - 194eb105-c788-4b35-b872-554fe944a3ac + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09: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: + - 5b2b4069-8532-4128-b1d2-7ea49692202a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:37: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: + - 7adc3059-c369-446b-9ad5-cf8647f35cc4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:37: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: + - 9d494fa0-114c-4da8-8696-66311d588148 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:38: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: + - 88d48128-d3a4-45a0-8fc6-5eb5eb74ee05 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:38: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: + - 13db3d7e-cc92-47d5-babc-f31225c14b03 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:38: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: + - 01cc4ab8-c7fb-4f6d-8e3e-18e6d528c322 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:38: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: + - 7ee1255a-d263-4c85-8d73-8f0a1acadab9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:38: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: + - 42870399-d193-42fc-b39d-421aaeaa670d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:38: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: + - 4980f2e1-2d83-44b3-bbc4-b288c3d43b1b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:39: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: + - 0a713846-06e6-4e85-9016-f3f01d606f97 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:39: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: + - 9086c48f-3429-4169-a859-2a8171c628a5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:39: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: + - ad2cbad8-a7df-4d86-8d06-546d4660f9c3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:39: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: + - 9563b3c8-33f0-434f-8051-0a4fe4e47d0b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:39:45 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: + - 191524a5-789b-4801-8a4f-1d343bb21271 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:39: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: + - 65ac136d-8fb6-4679-8db4-1df8a85ff651 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:40: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: + - 691ea23e-1057-4435-acbe-9423ce64d8e5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:40: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: + - 5f85346e-4980-4348-86c6-8ea09a83daab + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:40: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: + - c75e8f24-69fe-41d2-967a-243dc42d98c0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:40: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: + - f318242f-3c85-4f6a-80f2-21a9458e6dd5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:40: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: + - be25c997-c108-40e8-8410-570b48ce0ff6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:40: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: + - d6f5bb33-15c9-4b3f-9c3e-b9961bd60a17 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:41: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: + - 694ccd76-169e-4f37-a06b-2022c31754fb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:41: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: + - 482056d1-bc71-47cf-8f91-f1f2d90d8a77 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:41: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: + - c01d6a44-a849-4e71-8215-614215673681 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:41: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: + - d0280536-d470-45dd-bbf5-13c0a974c58b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:41: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: + - 9239c521-0ae3-44c3-b018-053dfb60da6b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:41: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: + - 4d34be92-b77e-479f-9a65-968b86dca4b1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:42: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: + - 4f59561a-feef-4581-8364-a6bbc6d27672 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:42: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: + - d0e2f43f-d260-48b4-935e-a82040defd8b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:42: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: + - cdd65ac5-13fd-49d2-b072-2bf290c080d0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:42: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: + - 2bfcd22a-56a4-4cf7-84de-4ccde0f2f5bc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:42: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: + - ff83337f-0065-43f7-bde7-7f50e873973f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:43: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: + - 32ffade2-a66e-4ec7-8bf0-0c121f74dad3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:43:12 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: + - 1576ca27-1e00-4222-a67b-74984e0d4248 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:43: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: + - 5774809f-bbe9-4891-8762-a190c098dd49 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:43: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: + - 45568ff5-2ae0-42fb-9ebf-6f6757e9950f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:43: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: + - f12b93c3-9c0a-443f-9e27-942b6cc4f917 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:43: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: + - b7587416-591f-4c02-9740-40b1697b7ef6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:44: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: + - a881bd18-9489-43a2-a80c-fcd4489d1ac3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:44: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: + - 88daaa56-2fc5-40fa-b3df-f5af235a8623 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:44: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: + - d6004131-6ea7-40b3-b3c5-929cf079e4ee + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:44: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: + - 4ebae267-4cbf-49bf-b6a1-cb56e4c3df16 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:44:45 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: + - 42a8861d-7452-4dab-ae06-6929c4e2f5ce + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:44: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: + - 3aa48b17-2f03-41de-8d50-1c651b6e0bb4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:45: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: + - 654d119c-d885-46fc-a461-01f51ba44554 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:45: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: + - 3e442ca3-98f1-4e8c-b48c-07d029f03124 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:45: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: + - ce4181a9-ba79-488b-8612-212054ab396f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:45: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: + - 7bbf1849-2142-4830-9548-7300fd44af03 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:45: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: + - 0b401ca6-d615-4389-a605-346238886adc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:45: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: + - 7faf9bd5-51b0-4a0a-a1ed-d8d4d2f5d6f9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:46: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: + - 76064559-b737-42aa-b44e-6f534cef656a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:46: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: + - c2839d48-a1dc-4715-acc2-00ad0cb47791 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:46: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: + - 58922595-73f2-48e8-ad16-64c12871471f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:46: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: + - 60e988e0-c150-46c9-a631-903153dd39ed + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:46: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: + - a4f155b2-4365-49fe-bd1e-11a04cc89789 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09: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: + - 69ff23e1-c6a9-4dbd-9763-57623eb85fcf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:47:12 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: + - 9a459f17-ac13-427e-bab8-d80ec12b93cd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:47: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: + - 5337ad3e-264b-4a2e-a161-ad57759f8dbd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:47: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: + - 7a28d156-04a9-47ba-9c5a-02dfda162f94 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:47: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: + - ab002db3-afd0-4041-9003-91474fb12058 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:47: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: + - a4dfa7f5-2e51-429b-bcf9-2df486b99f41 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:48: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: + - df586576-f738-4b31-8fc9-23817104e98d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:48: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: + - 4310585a-a3a0-4763-90e3-863045b25292 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:48: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: + - 0f3906fd-2a6f-4b7e-8f8f-7e01782cf2e9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:48: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: + - 0c95421a-f295-4ddf-87eb-6e68504a2893 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:48:45 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: + - 1bb24b66-6057-4f7a-bcde-c07141881b19 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:48: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: + - e11b7127-f512-4f1d-bcfc-a274125124c8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:49: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: + - f53a4bd8-14ba-49fa-9a95-1e8f1aca9f43 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09: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: + - ad9116e4-f61d-409d-9816-cae14546ba30 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:49: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: + - 897da0a5-595f-4ad1-afbd-5b10a1e9e4fc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:49: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: + - 3209b846-2816-4a08-bbe0-2f2b0802fc83 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:49: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: + - e015a78d-95de-4dc1-8884-e308ddf971eb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:49: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: + - 1a0ff300-501f-41b4-9ef5-f84337388cab + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:50: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: + - 8a5c7d1e-3732-4aa8-9437-0cc65e4044e2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:50: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: + - 38d13b6c-8b3c-43f6-a40b-a9ce49d07c67 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:50: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: + - eef86721-0221-43ce-af3e-39ddded9e551 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:50: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: + - 4dc28660-0d6e-4ee8-a1d7-ad812d909e62 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:50: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: + - 922e15f5-480c-4f2d-b05c-03557061ebe2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:50: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: + - b049b6dd-5909-4fbc-9dd2-00228098e44e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:51: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: + - c029e188-55f8-4d98-bbc2-e40fce023015 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:51: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: + - 0f194073-2944-4a70-91fc-672c164602d5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:51: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: + - 9cc56b0b-dcef-43b3-909c-48f4ec2893e5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:51: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: + - e4333a97-1275-46a5-80d1-860bea6e0a17 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:51: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: + - e6a4b835-a421-473f-8e57-c2e46d1405ec + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:52: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: + - 85795c09-d6d9-4d3f-b3a2-faad324b2089 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:52:12 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: + - 62b134ff-3017-4d59-9e0e-7db2b2a3b097 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:52: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: + - 97775975-f561-4455-ba13-8ad82845d499 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:52: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: + - 2d772e36-35ac-40f1-ba87-d718d896879e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:52: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: + - 56884816-d2ca-4daa-9e29-b31b1decd1fb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:52: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: + - 0cb552d5-91b7-498b-9f4d-a6e4983ae2d1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:53: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: + - ab509e17-8b02-4e66-923c-88d128650ea3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:53: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: + - 3f4f2c97-fadb-4678-b1e6-0928673149bd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:53: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: + - 0f2217f2-9dd6-4b5b-98c1-13e6d3123ddf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:53: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: + - 85a74d2a-5139-4c35-8687-5d169974414e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09:53: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: + - 92e62447-49c2-4652-abb0-322cc97f673a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8855dded-3dda-46b6-b6c1-026c496fd7aa?api-version=2020-04-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, 05 Jun 2020 09: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: + - 996b292e-f9b8-472b-83fa-c2d30a27d45b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway update + Connection: + - keep-alive + ParameterSetName: + - -g -n --scale-unit --vpn-server-config --address-space + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a9d26e4-a170-445a-b8dc-a521cc8ba79a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"False\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/False\",\r\n + \ \"etag\": \"W/\\\"3a9d26e4-a170-445a-b8dc-a521cc8ba79a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"13.0.0.0/24\",\r\n \"12.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2078' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:53:55 GMT + etag: + - W/"3a9d26e4-a170-445a-b8dc-a521cc8ba79a" + 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: + - 93472a05-aa3a-4a6c-a5ea-3ed86b643200 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways?api-version=2020-04-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"clitestvp2sgateway\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a9d26e4-a170-445a-b8dc-a521cc8ba79a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n + \ \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": + \"False\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/False\",\r\n + \ \"etag\": \"W/\\\"3a9d26e4-a170-445a-b8dc-a521cc8ba79a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n + \ },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"vpnClientAddressPool\": + {\r\n \"addressPrefixes\": [\r\n \"13.0.0.0/24\",\r\n + \ \"12.0.0.0/24\"\r\n ]\r\n },\r\n + \ \"enableInternetSecurity\": false\r\n }\r\n }\r\n + \ ],\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"customDnsServers\": + []\r\n }\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2287' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:53: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: + - cb39aed1-3df8-463a-b00c-e4c9a58c7c7b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway list + Connection: + - keep-alive + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/p2svpnGateways?api-version=2020-04-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"clitestvp2sgateway\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a9d26e4-a170-445a-b8dc-a521cc8ba79a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n + \ \"p2SConnectionConfigurations\": [\r\n {\r\n \"name\": + \"False\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/False\",\r\n + \ \"etag\": \"W/\\\"3a9d26e4-a170-445a-b8dc-a521cc8ba79a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n + \ },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"vpnClientAddressPool\": + {\r\n \"addressPrefixes\": [\r\n \"13.0.0.0/24\",\r\n + \ \"12.0.0.0/24\"\r\n ]\r\n },\r\n + \ \"enableInternetSecurity\": false\r\n }\r\n }\r\n + \ ],\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"customDnsServers\": + []\r\n }\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2287' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:53: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: + - d2842608-6c1b-4a06-9016-cb18d4d1c9a3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestvp2sgateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway\",\r\n + \ \"etag\": \"W/\\\"3a9d26e4-a170-445a-b8dc-a521cc8ba79a\\\"\",\r\n \"type\": + \"Microsoft.Network/p2sVpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHub\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"vpnServerConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig2\"\r\n + \ },\r\n \"vpnServerConfigurationLocation\": \"westus\",\r\n \"p2SConnectionConfigurations\": + [\r\n {\r\n \"name\": \"False\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2sVpnGateways/clitestvp2sgateway/p2sConnectionConfigurations/False\",\r\n + \ \"etag\": \"W/\\\"3a9d26e4-a170-445a-b8dc-a521cc8ba79a\\\"\",\r\n + \ \"type\": \"Microsoft.Network/p2sVpnGateways/p2sConnectionConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"routingConfiguration\": {\r\n \"propagatedRouteTables\": + {\r\n \"labels\": [],\r\n \"ids\": []\r\n },\r\n + \ \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n + \ },\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": + [\r\n \"13.0.0.0/24\",\r\n \"12.0.0.0/24\"\r\n ]\r\n + \ },\r\n \"enableInternetSecurity\": false\r\n }\r\n + \ }\r\n ],\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"customDnsServers\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2078' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 09:53:58 GMT + etag: + - W/"3a9d26e4-a170-445a-b8dc-a521cc8ba79a" + 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: + - dc802399-bcf5-4d52-b409-d4bb26afebb0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: '' + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 05 Jun 2020 09:54:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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: + - d39da7a0-fd50-468c-bbee-5038d0ad27b7 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:54: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: + - 2d2fc6e6-393b-4e9f-a57b-020ba055c324 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:54: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: + - 2186b994-0023-42c3-bf5c-ae4b525766f7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:54: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: + - 25b9dd83-e599-465d-918f-6df3654481c6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:54: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: + - 61b0a346-5b1f-44a4-8163-48dbe25cd8c5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:54: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: + - 94ffc316-8b35-459f-98f3-ea4a5d803b74 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:55: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: + - 01f54bb9-84b1-4e0b-b999-610c638e88dd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:55:12 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: + - af79f69d-021d-43cb-b6a4-f217efb160ff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:55: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: + - e0d14839-2c6a-402b-9965-c5119302a1a5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:55: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: + - c038b9f9-a2c9-49ca-a86e-6c9952736b7a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:55: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: + - b275bd2c-f293-4cda-af6e-b1a4978f2fc1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09: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: + - 456c7064-9c89-473a-8624-cde3dfb921c0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:56: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: + - 2eb359e4-fa65-4090-b214-63ca5ab33414 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:56: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: + - 52cc4765-378e-48e0-bdb9-d85019211535 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09: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: + - ad938934-9828-4887-a608-cd292767773a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:56: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: + - 3c4755e6-0c0b-4b38-af62-2228a29af77f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:56:45 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: + - a13c1996-4066-41bd-be0d-fc26e421f7fb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:56: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: + - 2c107f86-4e61-4a89-8fa5-fc06e1977005 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:57: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: + - 2f79ebb7-feac-4ec2-a2f2-f4663b70b420 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:57:17 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: + - 233cd4d4-db54-4f08-ac82-970e752a05f9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:57: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: + - 99bacfeb-6dd1-490f-8cc5-dc5b458e9d15 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:57: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: + - d99da4b1-0a69-4405-bfa5-cabe4c353349 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:57: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: + - f6108f9f-4d5f-4a8c-905a-5c8390f821ff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:57: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: + - 8a87be52-c827-4c8d-9c83-ed255de959e5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:58: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: + - d753549d-f6c7-42db-a1f1-814ca10aeb46 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09: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: + - 562bb95b-2917-4ac6-a0af-dbaaa62ed147 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:58: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: + - 67ab0b50-0975-425c-b6fc-1c0a9df2691e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:58: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: + - 8e6e4426-baea-43d3-b347-5d89c90233f3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:58: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: + - f9c60967-9a4c-4c20-a957-45eb5651351f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09: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: + - d860e7ca-d504-4bdb-b4d6-ed9c2412264f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09: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: + - cb27e7ad-f2e8-47b3-b65d-1f994c5c0a87 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:59: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: + - 5e6c2c40-7968-4015-8502-507b8674bcfd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:59: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: + - 0d2028dd-b7d6-4e2f-b7d1-10d3885c4054 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09:59: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: + - 329d3153-5d0e-4afe-931b-5bd59d842382 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 09: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: + - ffab8a96-a56d-4bb4-8e5e-1d3d696487d0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:00: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: + - a2d12041-e762-499c-aa56-a405c87783ac + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:00: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: + - 449497ce-063f-4a84-921d-5c6eca5e6f3d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10: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: + - ef5b71e0-93cf-4498-ba74-eff729c7325e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:00: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: + - 0c74a3b0-8deb-4dbf-a1b8-3855da8fd6dd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:00: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: + - 1d96f7be-4846-4117-8e1c-ad35867789fd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10: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: + - 654602c2-9bd9-4aad-8025-ece4c0640820 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:01: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: + - f2ebefe7-cb89-46ed-a4c1-f356b4012727 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:01: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: + - 20cef252-6665-4b89-81d7-4664982df45c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:01: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: + - 9ab16f40-115b-47f1-ad55-1792c3a3b2df + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:01: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: + - 4dd4d7df-8049-4a17-9f81-ab80b0b1953a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:01: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: + - e15c31de-586e-4d21-8423-a3f8a0ca7592 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:01: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: + - 61dd6fea-5892-4eb4-8b39-b0d86462e792 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:02: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: + - 6a4aa127-49c6-473c-9293-734eb694019d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:02:17 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: + - fe429e08-6aa1-4930-980b-224d8d9a920d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:02: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: + - f81353e6-bf1a-4bc2-9ddd-b66de582b221 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:02: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: + - 07855ddc-5666-4921-98d3-38d5c69ecea9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:02: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: + - 85619cc2-277a-47a4-b50e-001cd11482a8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:02: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: + - 4375c19e-0308-40ac-8462-494e088ada77 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:03: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: + - b29ee1e3-2caf-4aa4-9aba-4f1f75ce125e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:03: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: + - 26a3155e-be2e-48b4-be8d-518bd5cb1a87 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:03: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: + - 4ea60759-802e-4e65-a1e6-317978e64ce8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:03: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: + - 7f411e00-f217-46ac-a2ba-5b02f4ea60a8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:03: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: + - 3eb9fd63-042f-4d56-83dc-83b4f2e10186 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:04: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: + - 5661affa-f124-4c5f-b691-25795bbea398 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:04:12 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: + - 517b6c68-5011-494a-bc8e-2a422a2dc721 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:04: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: + - 1631df6d-532f-47f4-b0e5-8348f9c19569 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:04: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: + - 4c6679cc-7bf9-4796-9ce1-fc6e3c27d596 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:04: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: + - e275ecbb-2369-44d4-ab9c-73f8b27651b9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:04: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: + - 0fd9392a-d4ec-4307-88fb-ae2bbcfec06b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:05: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: + - bc6c0603-15c3-4e8d-801a-6359198c7622 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:05: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: + - a4db65e8-249d-4ae5-b0ec-884004584c81 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:05: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: + - 550cd1f3-dd7c-4bd9-8c26-5da8102754be + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:05: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: + - 7bcb8875-214f-4944-8e9b-923ddc2d0422 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:05: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: + - ac29a2fc-6099-4b7b-8393-0c5e3331e878 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:05: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: + - f9f8fb26-c2a4-44a4-bd6a-513459442441 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:06: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: + - eb0a7204-a368-4793-9436-58ef9cc613dc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:06: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: + - 7b09e263-2ad5-434d-8a03-c2155542f4d5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:06: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: + - afc9f1ab-7974-4239-8b71-b9e02822652d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/94d4ccb8-d278-45f6-9c6b-cad9dfd83ebb?api-version=2020-04-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, 05 Jun 2020 10:06: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: + - 994bc1d3-e323-43a5-8327-736729b07010 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network p2s-vpn-gateway show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/p2svpnGateways/clitestvp2sgateway?api-version=2020-04-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/p2sVpnGateways/clitestvp2sgateway'' + under resource group ''cli_test_azure_vhub_connection000001'' was not found."}}' + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 05 Jun 2020 10:06:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +version: 1 diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vhub_connection_basic_scenario.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vhub_connection_basic_scenario.yaml index e73da311983..a5efdb39cb5 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vhub_connection_basic_scenario.yaml +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vhub_connection_basic_scenario.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vhub_connection000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001","name":"cli_test_azure_vhub_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-04T07:18:50Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001","name":"cli_test_azure_vhub_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-08T03:35:24Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:18:54 GMT + - Mon, 08 Jun 2020 03:35:28 GMT expires: - '-1' pragma: @@ -63,19 +63,19 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualNetworks/clitestvnet?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualNetworks/clitestvnet?api-version=2020-04-01 response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"fed9e9d6-5423-4b83-91a9-ff9704d81edd\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7ae81f5c-5d02-4032-bb86-7ea33cb76112\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"0d13f500-a48d-423f-a147-d5549f429b04\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"0c7ab228-c1e8-4bb9-8213-1944d0bc8822\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -84,7 +84,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f48baabb-8417-42ec-91c1-2cec26798d55?api-version=2019-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2da7bcb-e0d5-4aec-a155-eaaf030a1f45?api-version=2020-04-01 cache-control: - no-cache content-length: @@ -92,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:18:58 GMT + - Mon, 08 Jun 2020 03:35:35 GMT expires: - '-1' pragma: @@ -105,9 +105,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 16062bb8-d19e-42df-a2e4-72ee192c2d8b + - 0f1898d3-d6d8-4063-ad3d-adb3682d557a x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -125,60 +125,10 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f48baabb-8417-42ec-91c1-2cec26798d55?api-version=2019-09-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 Jun 2020 07: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: - - ff14e1ff-daa3-4b23-825a-faf464ca6a4f - 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 - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f48baabb-8417-42ec-91c1-2cec26798d55?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2da7bcb-e0d5-4aec-a155-eaaf030a1f45?api-version=2020-04-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -190,7 +140,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:19:12 GMT + - Mon, 08 Jun 2020 03:35:39 GMT expires: - '-1' pragma: @@ -207,7 +157,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8c45ff32-c347-442b-8bc3-c8470cc270de + - 901f028c-ec53-4b89-864b-e29cfbf72181 status: code: 200 message: OK @@ -225,10 +175,10 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f48baabb-8417-42ec-91c1-2cec26798d55?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2da7bcb-e0d5-4aec-a155-eaaf030a1f45?api-version=2020-04-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -240,7 +190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:19:23 GMT + - Mon, 08 Jun 2020 03:35:49 GMT expires: - '-1' pragma: @@ -257,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f62b7741-18c1-45f8-ba01-13ee0c337826 + - 5696d680-7ccf-44da-929c-7040e7fc5be0 status: code: 200 message: OK @@ -275,17 +225,17 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualNetworks/clitestvnet?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualNetworks/clitestvnet?api-version=2020-04-01 response: body: string: "{\r\n \"name\": \"clitestvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\",\r\n - \ \"etag\": \"W/\\\"15f302e3-72d5-49da-85f6-29f4d73e89b8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3bb15293-060c-43a9-9a9d-0375930c88c9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"0d13f500-a48d-423f-a147-d5549f429b04\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"0c7ab228-c1e8-4bb9-8213-1944d0bc8822\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -298,9 +248,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:19:23 GMT + - Mon, 08 Jun 2020 03:35:50 GMT etag: - - W/"15f302e3-72d5-49da-85f6-29f4d73e89b8" + - W/"3bb15293-060c-43a9-9a9d-0375930c88c9" expires: - '-1' pragma: @@ -317,7 +267,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 250161bc-20f3-4105-8be8-8290c7978474 + - 58987d91-2747-40cd-b890-7e0117214c7c status: code: 200 message: OK @@ -335,15 +285,15 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vhub_connection000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001","name":"cli_test_azure_vhub_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-04T07:18:50Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001","name":"cli_test_azure_vhub_connection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-08T03:35:24Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -352,7 +302,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:19:24 GMT + - Mon, 08 Jun 2020 03:35:51 GMT expires: - '-1' pragma: @@ -384,8 +334,8 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -393,7 +343,7 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"3e2199a8-5300-49f1-83c2-aa8667c45963\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6ea7ea00-0df2-42dd-af87-d8ad1883ab06\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"allowVnetToVnetTraffic\": @@ -402,7 +352,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9bbd6029-cce0-4ab9-8167-481def922db5?api-version=2018-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9bd3239b-6b57-46dc-b93a-93d8b412cbea?api-version=2018-08-01 cache-control: - no-cache content-length: @@ -410,7 +360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:19:32 GMT + - Mon, 08 Jun 2020 03:35:58 GMT expires: - '-1' pragma: @@ -423,9 +373,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fe83dfdc-016f-4dca-b68d-e7eec8527851 + - 23898834-bee5-4f13-be48-bd8c2eb217dc x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -443,10 +393,10 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9bbd6029-cce0-4ab9-8167-481def922db5?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9bd3239b-6b57-46dc-b93a-93d8b412cbea?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -458,7 +408,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:19:43 GMT + - Mon, 08 Jun 2020 03:36:10 GMT expires: - '-1' pragma: @@ -475,7 +425,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f136e0cf-85c9-4776-aac8-609cf303ec7f + - 3c44161e-2b1d-4c4b-ac36-aba16e1d8081 status: code: 200 message: OK @@ -493,14 +443,14 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2018-08-01 response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"81005211-8db0-403e-978d-1db829c3e6db\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"70a340d8-a2c7-4971-abf6-3b705c9a68d3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"allowVnetToVnetTraffic\": @@ -513,9 +463,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:19:43 GMT + - Mon, 08 Jun 2020 03:36:11 GMT etag: - - W/"81005211-8db0-403e-978d-1db829c3e6db" + - W/"70a340d8-a2c7-4971-abf6-3b705c9a68d3" expires: - '-1' pragma: @@ -532,7 +482,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5b3e540c-c188-405a-8d9d-89d841b8b991 + - bbcb431c-ab8e-481f-942e-d28db5f94532 status: code: 200 message: OK @@ -555,8 +505,8 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -564,7 +514,7 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"ee02b67d-d7b1-4d00-a21c-ea12f5ae5629\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9f9f73e4-28a0-4250-9023-4080e94a5442\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualNetworkConnections\": [],\r\n \"addressPrefix\": \"10.5.0.0/16\",\r\n \"virtualRouterIps\": @@ -575,7 +525,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 cache-control: - no-cache content-length: @@ -583,7 +533,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:19:49 GMT + - Mon, 08 Jun 2020 03:36:17 GMT expires: - '-1' pragma: @@ -596,9 +546,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 436e1e22-73d0-4cc0-9a34-f3ce16e073dd + - a1ce3928-5ca6-4b70-8e0f-dc9d6a6eedeb x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -616,10 +566,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -631,7 +581,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:19:59 GMT + - Mon, 08 Jun 2020 03:36:29 GMT expires: - '-1' pragma: @@ -648,7 +598,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bdd56a25-f332-4fa4-90b8-1d9f9e24283c + - 040f7c01-0e15-4381-9396-bf3b538abe1e status: code: 200 message: OK @@ -666,10 +616,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -681,7 +631,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:20:10 GMT + - Mon, 08 Jun 2020 03:36:39 GMT expires: - '-1' pragma: @@ -698,7 +648,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bcb47599-305f-49ed-a21b-fbe5e6434cd4 + - 0e44e18d-0c44-4227-83ce-e8ab521d3c0c status: code: 200 message: OK @@ -716,10 +666,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -731,7 +681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:20:21 GMT + - Mon, 08 Jun 2020 03:36:51 GMT expires: - '-1' pragma: @@ -748,7 +698,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a843cddb-283b-4b24-8261-f52e03cbccdf + - b9c6a612-8076-42cf-a9c1-05673b088dfa status: code: 200 message: OK @@ -766,10 +716,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -781,7 +731,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:20:32 GMT + - Mon, 08 Jun 2020 03:37:01 GMT expires: - '-1' pragma: @@ -798,7 +748,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5d95593d-f95c-44ec-8a71-205dc524d6a0 + - 58c16cfa-64d7-4f5b-b93a-fd502db9d9c0 status: code: 200 message: OK @@ -816,10 +766,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -831,7 +781,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:20:43 GMT + - Mon, 08 Jun 2020 03:37:12 GMT expires: - '-1' pragma: @@ -848,7 +798,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6d59dd59-4c2d-427b-b73a-d7199f3c90b7 + - 6b8868e5-2eb0-4eed-bf81-09eacea86af9 status: code: 200 message: OK @@ -866,10 +816,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -881,7 +831,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:20:54 GMT + - Mon, 08 Jun 2020 03:37:24 GMT expires: - '-1' pragma: @@ -898,7 +848,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - daa6de09-59f1-4878-ab1f-311bb9e984ac + - cceec2b2-8eb4-4cce-bbf5-dd9d0205c278 status: code: 200 message: OK @@ -916,10 +866,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -931,7 +881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:21:05 GMT + - Mon, 08 Jun 2020 03:37:34 GMT expires: - '-1' pragma: @@ -948,7 +898,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4e1f3e34-bb10-41f3-9846-067206776c41 + - 8392e8bc-7160-41ac-a3d4-cf4b8a85e79d status: code: 200 message: OK @@ -966,10 +916,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -981,7 +931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:21:15 GMT + - Mon, 08 Jun 2020 03:37:45 GMT expires: - '-1' pragma: @@ -998,7 +948,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 148e742d-482f-4eaf-afc2-c06da607b834 + - c013b202-1b90-4106-a970-0ba36bf15217 status: code: 200 message: OK @@ -1016,10 +966,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1031,7 +981,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:21:27 GMT + - Mon, 08 Jun 2020 03:37:56 GMT expires: - '-1' pragma: @@ -1048,7 +998,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f514c28f-5631-40d9-b541-1e97d650a82e + - 24711774-8b8c-4a25-b33a-6e80ab520f29 status: code: 200 message: OK @@ -1066,10 +1016,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1081,7 +1031,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:21:38 GMT + - Mon, 08 Jun 2020 03:38:07 GMT expires: - '-1' pragma: @@ -1098,7 +1048,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bcbeec94-ae18-44eb-adad-8a8b394c0403 + - 3371b98f-9af1-4f64-8e0c-326e6ac6fe31 status: code: 200 message: OK @@ -1116,10 +1066,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1131,7 +1081,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:21:49 GMT + - Mon, 08 Jun 2020 03:38:18 GMT expires: - '-1' pragma: @@ -1148,7 +1098,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6cde2697-a269-4dd0-bd18-165fe87a30fe + - f4d13656-47cb-4ce5-a73a-e3a3ae95ef6e status: code: 200 message: OK @@ -1166,10 +1116,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1181,7 +1131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:21:59 GMT + - Mon, 08 Jun 2020 03:38:29 GMT expires: - '-1' pragma: @@ -1198,7 +1148,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f72cf47c-ecf2-4c1d-b8d6-038b209c36c8 + - cd1205b2-b73f-4199-93cf-27ae5562a46f status: code: 200 message: OK @@ -1216,10 +1166,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1231,7 +1181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:22:10 GMT + - Mon, 08 Jun 2020 03:38:40 GMT expires: - '-1' pragma: @@ -1248,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4c493ea1-ecd8-487e-80b8-0ee14e217dec + - 7341e952-29c8-4c7a-a7fc-e51f41c0bae0 status: code: 200 message: OK @@ -1266,10 +1216,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1281,7 +1231,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:22:21 GMT + - Mon, 08 Jun 2020 03:38:50 GMT expires: - '-1' pragma: @@ -1298,7 +1248,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 802dd7fe-26a4-4a68-89ea-71f548ac3eb5 + - 5154bdc2-68e1-4018-806c-67affe1a9311 status: code: 200 message: OK @@ -1316,10 +1266,210 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c916c89f-d5e0-4fb0-9cb5-bd2940ffdfe1?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-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, 08 Jun 2020 03:39: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: + - ae59dee2-35ab-4b9c-8a95-c96334593ad2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-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, 08 Jun 2020 03:39:12 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: + - 6657b5fb-9b0d-4e86-a224-7e634835cc5e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-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, 08 Jun 2020 03:39: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: + - 562f6fb1-5b24-4977-8fc7-e1f8651fb6cb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-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, 08 Jun 2020 03:39: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: + - 65c88cb4-ac29-4058-b502-5e689dd25e65 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98f2ed38-3d54-418c-a67a-399654b3eb0d?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1331,7 +1481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:22:32 GMT + - Mon, 08 Jun 2020 03:39:45 GMT expires: - '-1' pragma: @@ -1348,7 +1498,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 14797116-4397-4bfe-9cf5-fb784dad73d9 + - 7986c330-5037-4a9e-bfd0-145203b410c6 status: code: 200 message: OK @@ -1366,14 +1516,14 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2018-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"0bbb830b-1f92-49fb-bce5-7b833426c6d2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a34db681-3759-4710-b3f3-6f7c96fac7d3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualNetworkConnections\": [],\r\n \"addressPrefix\": \"10.5.0.0/16\",\r\n \"virtualRouterIps\": @@ -1388,7 +1538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:22:32 GMT + - Mon, 08 Jun 2020 03:39:46 GMT expires: - '-1' pragma: @@ -1405,7 +1555,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e81c6234-5974-477e-80eb-badc710cc0eb + - 20ff92a1-9ae5-4de2-b1c7-014f8580d79e status: code: 200 message: OK @@ -1423,8 +1573,8 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET @@ -1432,7 +1582,7 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"0bbb830b-1f92-49fb-bce5-7b833426c6d2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a34db681-3759-4710-b3f3-6f7c96fac7d3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualNetworkConnections\": [],\r\n \"addressPrefix\": \"10.5.0.0/16\",\r\n \"virtualRouterIps\": @@ -1447,7 +1597,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:22:33 GMT + - Mon, 08 Jun 2020 03:39:48 GMT expires: - '-1' pragma: @@ -1464,7 +1614,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5ebd499e-6459-44be-a42b-265488cf1e12 + - 4fb0ad01-b1a2-46fa-a817-d09f69218112 status: code: 200 message: OK @@ -1491,8 +1641,8 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT @@ -1500,15 +1650,15 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"5971824b-e928-4f28-94f6-0d93ed2d9c4b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2a286b7a-c981-4eca-be48-54cc3c165ed3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualNetworkConnections\": [\r\n {\r\n \"name\": \"clitestvhubconnection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubVirtualNetworkConnections/clitestvhubconnection\",\r\n - \ \"etag\": \"W/\\\"5971824b-e928-4f28-94f6-0d93ed2d9c4b\\\"\",\r\n + \ \"etag\": \"W/\\\"2a286b7a-c981-4eca-be48-54cc3c165ed3\\\"\",\r\n \ \"type\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"60d4796d-d0c7-454a-bb4d-f662a94fe846\",\r\n + \ \"resourceGuid\": \"9cd6c6e5-b161-4421-8058-3d7fd5bbf3e9\",\r\n \ \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\"\r\n \ },\r\n \"allowHubToRemoteVnetTransit\": true,\r\n \"allowRemoteVnetToUseHubVnetGateways\": false,\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n @@ -1518,7 +1668,7 @@ interactions: \ }\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bc015d0-36bf-461b-b33f-297c10f52d7c?api-version=2018-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-01 cache-control: - no-cache content-length: @@ -1526,7 +1676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:22:35 GMT + - Mon, 08 Jun 2020 03:39:49 GMT expires: - '-1' pragma: @@ -1543,9 +1693,259 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - acd01012-bd28-4ed1-be70-39128b7819aa + - 5bd2f8fe-2898-4a57-a56b-9bf64a14f7ba x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub connection create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --vhub-name --name --remote-vnet + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-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, 08 Jun 2020 03:39: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: + - e4e4b485-0aba-4ad3-8067-e54a38dc9df3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub connection create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --vhub-name --name --remote-vnet + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-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, 08 Jun 2020 03:40: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: + - 9ba4c59c-8eeb-4f47-8854-e24f72787537 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub connection create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --vhub-name --name --remote-vnet + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-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, 08 Jun 2020 03:40: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: + - 4f773737-f6aa-4a8b-ae98-c28dd428aba8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub connection create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --vhub-name --name --remote-vnet + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-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, 08 Jun 2020 03:40: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: + - 173fc9e2-60ba-42da-bfc8-eea946067950 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub connection create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --vhub-name --name --remote-vnet + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-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, 08 Jun 2020 03:40: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: + - b4b2a180-3939-427a-9d19-b56825ad74db status: code: 200 message: OK @@ -1563,10 +1963,10 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bc015d0-36bf-461b-b33f-297c10f52d7c?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1578,7 +1978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:22:46 GMT + - Mon, 08 Jun 2020 03:40:54 GMT expires: - '-1' pragma: @@ -1595,7 +1995,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bef5ff75-dc20-486c-bd0c-4153e0a1b573 + - 0ed395f0-0f34-44a9-a838-129b8c650d93 status: code: 200 message: OK @@ -1613,10 +2013,10 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bc015d0-36bf-461b-b33f-297c10f52d7c?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1628,7 +2028,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:22:57 GMT + - Mon, 08 Jun 2020 03:41:05 GMT expires: - '-1' pragma: @@ -1645,7 +2045,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 34f39eba-2248-4b3f-8c04-16dbfedc9d56 + - d8d1672d-ed5a-4eb9-8db1-68ae4e325db4 status: code: 200 message: OK @@ -1663,10 +2063,10 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bc015d0-36bf-461b-b33f-297c10f52d7c?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1678,7 +2078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:23:08 GMT + - Mon, 08 Jun 2020 03:41:17 GMT expires: - '-1' pragma: @@ -1695,7 +2095,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2fba7b5c-7c9f-4d77-b7e8-1a23aedd840d + - 9d11ba5c-0352-4af4-b6dc-6621156edf27 status: code: 200 message: OK @@ -1713,10 +2113,10 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bc015d0-36bf-461b-b33f-297c10f52d7c?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1728,7 +2128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:23:19 GMT + - Mon, 08 Jun 2020 03:41:27 GMT expires: - '-1' pragma: @@ -1745,7 +2145,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dc6dadbf-efee-4322-8fdd-d8d4dba9a95f + - 8de7211a-00b6-4c26-9c5d-1c94d92bbfab status: code: 200 message: OK @@ -1763,10 +2163,10 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bc015d0-36bf-461b-b33f-297c10f52d7c?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1778,7 +2178,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:23:30 GMT + - Mon, 08 Jun 2020 03:41:38 GMT expires: - '-1' pragma: @@ -1795,7 +2195,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2525d235-2687-4910-8242-afa9868016db + - 5631da26-d727-4171-83a8-68bbc1c25b06 status: code: 200 message: OK @@ -1813,10 +2213,10 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bc015d0-36bf-461b-b33f-297c10f52d7c?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1828,7 +2228,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:23:41 GMT + - Mon, 08 Jun 2020 03:41:50 GMT expires: - '-1' pragma: @@ -1845,7 +2245,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 51927f0e-4272-48a1-86c5-2b1e618eb036 + - b2cfb083-6abf-4f39-a401-af55ce51eb2a status: code: 200 message: OK @@ -1863,10 +2263,10 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bc015d0-36bf-461b-b33f-297c10f52d7c?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1878,7 +2278,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:23:53 GMT + - Mon, 08 Jun 2020 03:42:00 GMT expires: - '-1' pragma: @@ -1895,7 +2295,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a429abf-05cb-438e-beb8-6fdebf7fe55a + - 6911dc06-90fd-4635-8a46-9aac80390ba8 status: code: 200 message: OK @@ -1913,10 +2313,10 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bc015d0-36bf-461b-b33f-297c10f52d7c?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1928,7 +2328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:24:04 GMT + - Mon, 08 Jun 2020 03:42:11 GMT expires: - '-1' pragma: @@ -1945,7 +2345,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 77e6e33e-a7cb-49e6-9dcf-6c18e2ee1d0f + - 69f5b2f8-10ae-4c6f-8577-d0fdc9cb78a5 status: code: 200 message: OK @@ -1963,10 +2363,10 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bc015d0-36bf-461b-b33f-297c10f52d7c?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1978,7 +2378,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:24:14 GMT + - Mon, 08 Jun 2020 03:42:22 GMT expires: - '-1' pragma: @@ -1995,7 +2395,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9a8403f1-c81c-4da2-b7a1-4fa82734c3bc + - 563b5ac5-fb30-42d7-bd13-f1f8ac973cbe status: code: 200 message: OK @@ -2013,10 +2413,10 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bc015d0-36bf-461b-b33f-297c10f52d7c?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2028,7 +2428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:24:26 GMT + - Mon, 08 Jun 2020 03:42:33 GMT expires: - '-1' pragma: @@ -2045,7 +2445,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 35284a43-79f4-49b0-ace2-9a66e5d40803 + - 504bdef9-d2c5-4897-8a89-e0bf7c2cf41a status: code: 200 message: OK @@ -2063,10 +2463,10 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bc015d0-36bf-461b-b33f-297c10f52d7c?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2078,7 +2478,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:24:37 GMT + - Mon, 08 Jun 2020 03:42:44 GMT expires: - '-1' pragma: @@ -2095,7 +2495,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6cc68475-3e3a-4af6-90e2-881fa87838ef + - e8ca574e-eb6b-4592-b5c6-841eadb272fc status: code: 200 message: OK @@ -2113,10 +2513,10 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bc015d0-36bf-461b-b33f-297c10f52d7c?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2128,7 +2528,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:24:48 GMT + - Mon, 08 Jun 2020 03:42:56 GMT expires: - '-1' pragma: @@ -2145,7 +2545,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 44b1ee8e-8c2d-4613-b000-d31e86650add + - fe923ee9-d9a8-40a3-92f5-ef33cc231ea5 status: code: 200 message: OK @@ -2163,10 +2563,10 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5bc015d0-36bf-461b-b33f-297c10f52d7c?api-version=2018-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18e76c1c-0b2c-4470-b0d5-259db96f7dc8?api-version=2018-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2178,7 +2578,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:25:00 GMT + - Mon, 08 Jun 2020 03:43:07 GMT expires: - '-1' pragma: @@ -2195,7 +2595,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f68f6aba-3a30-447c-afca-a86cef779833 + - 2d98d6b7-a35e-4783-a344-3fce070381dc status: code: 200 message: OK @@ -2213,22 +2613,22 @@ interactions: ParameterSetName: - --resource-group --vhub-name --name --remote-vnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - networkmanagementclient/2.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 networkmanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2018-08-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"274e8d5d-63a1-43b6-988b-8a0f3eda7f13\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f7bb80b6-98fc-4cbf-b9ce-3d3daf2555c9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualNetworkConnections\": [\r\n {\r\n \"name\": \"clitestvhubconnection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualHubs/clitestvhub/hubVirtualNetworkConnections/clitestvhubconnection\",\r\n - \ \"etag\": \"W/\\\"274e8d5d-63a1-43b6-988b-8a0f3eda7f13\\\"\",\r\n + \ \"etag\": \"W/\\\"f7bb80b6-98fc-4cbf-b9ce-3d3daf2555c9\\\"\",\r\n \ \"type\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"60d4796d-d0c7-454a-bb4d-f662a94fe846\",\r\n + \ \"resourceGuid\": \"9cd6c6e5-b161-4421-8058-3d7fd5bbf3e9\",\r\n \ \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vhub_connection000001/providers/Microsoft.Network/virtualNetworks/clitestvnet\"\r\n \ },\r\n \"allowHubToRemoteVnetTransit\": true,\r\n \"allowRemoteVnetToUseHubVnetGateways\": false,\r\n \"enableInternetSecurity\": false\r\n }\r\n }\r\n @@ -2244,7 +2644,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Jun 2020 07:25:01 GMT + - Mon, 08 Jun 2020 03:43:07 GMT expires: - '-1' pragma: @@ -2261,7 +2661,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ac8f4f92-cd3c-4ae2-b306-2d2839fd334f + - a4654675-a11c-44d9-9039-ae7f0c43890b status: code: 200 message: OK diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vpn_server_config_basic_scenario.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vpn_server_config_basic_scenario.yaml new file mode 100644 index 00000000000..6134dd024ca --- /dev/null +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vpn_server_config_basic_scenario.yaml @@ -0,0 +1,2092 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vpn-client-root-certs --vpn-client-revoked-certs + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vpn_server_config000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001","name":"cli_test_azure_vpn_server_config000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-08T03:05:09Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '478' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:05: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": "westcentralus", "properties": {"vpnClientRootCertificates": + [{"name": "ApplicationGatewayAuthCert", "publicCertData": "MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAw\nMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAx\nMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBw\nbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcN\nAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJ\nSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x\n+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/\nxQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezO\nqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/\n7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYD\nVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0\naW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/Whcow\nDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT\n3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pR\nLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5yg\nCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjuj\nZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG\n7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8="}], + "vpnClientRevokedCertificates": [{"name": "ApplicationGatewayAuthCert", "thumbprint": + "ef6c937b5935e25941f2ea271d38f90dfdb20953"}], "aadAuthenticationParameters": + {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config create + Connection: + - keep-alive + Content-Length: + - '1475' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --vpn-client-root-certs --vpn-client-revoked-certs + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"c04dc837-48f0-46a4-89c4-df63284e3213\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": + [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": + \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAw\\nMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAx\\nMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBw\\nbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcN\\nAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJ\\nSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x\\n+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/\\nxQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezO\\nqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/\\n7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYD\\nVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0\\naW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/Whcow\\nDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT\\n3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pR\\nLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5yg\\nCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjuj\\nZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG\\n7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n + \ }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n + \ \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": + \"ef6c937b5935e25941f2ea271d38f90dfdb20953\"\r\n }\r\n ],\r\n \"radiusServers\": + [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/8198a0e2-8e24-4bf7-b20f-55976a666c2e?api-version=2020-04-01 + cache-control: + - no-cache + content-length: + - '2267' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:05:23 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: + - 2391ec1c-2f3f-46ab-bb30-7a4998f438c7 + 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-server-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vpn-client-root-certs --vpn-client-revoked-certs + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/8198a0e2-8e24-4bf7-b20f-55976a666c2e?api-version=2020-04-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:05: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: + - 00f45945-3249-4fbe-871d-2f280f4f9cdb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vpn-client-root-certs --vpn-client-revoked-certs + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"1066135f-cdbe-4558-bb4d-dd817ae2f605\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"Certificate\"\r\n ],\r\n \"vpnClientRootCertificates\": + [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n \"publicCertData\": + \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAw\\nMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAx\\nMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBw\\nbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcN\\nAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJ\\nSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x\\n+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/\\nxQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezO\\nqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/\\n7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYD\\nVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0\\naW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/Whcow\\nDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT\\n3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pR\\nLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5yg\\nCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjuj\\nZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG\\n7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n + \ }\r\n ],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n + \ \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": + \"ef6c937b5935e25941f2ea271d38f90dfdb20953\"\r\n }\r\n ],\r\n \"radiusServers\": + [],\r\n \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {},\r\n \"vpnClientIpsecPolicies\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2268' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:05:34 GMT + etag: + - W/"1066135f-cdbe-4558-bb4d-dd817ae2f605" + 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: + - 98fea745-641b-4b5a-b663-d0f8b966c7a6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config set + Connection: + - keep-alive + ParameterSetName: + - -n -g --auth-types --radius-client-root-certs --radius-server-root-certs --radius-servers + --radius-servers + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vpn_server_config000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001","name":"cli_test_azure_vpn_server_config000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-08T03:05:09Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '478' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:05: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: '{"location": "westcentralus", "properties": {"vpnAuthenticationTypes": + ["Radius"], "radiusServerRootCertificates": [{"name": "ApplicationGatewayAuthCert", + "publicCertData": "MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAw\r\nMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAx\r\nMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBw\r\nbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcN\r\nAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJ\r\nSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x\r\n+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/\r\nxQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezO\r\nqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/\r\n7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYD\r\nVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0\r\naW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/Whcow\r\nDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT\r\n3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pR\r\nLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5yg\r\nCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjuj\r\nZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG\r\n7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8="}], + "radiusClientRootCertificates": [{"name": "ApplicationGatewayAuthCert", "thumbprint": + "ef6c937b5935e25941f2ea271d38f90dfdb20953"}], "radiusServers": [{"radiusServerAddress": + "test1", "radiusServerScore": 10, "radiusServerSecret": "clitest"}, {"radiusServerAddress": + "test2", "radiusServerScore": 10, "radiusServerSecret": "clitest"}], "aadAuthenticationParameters": + {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config set + Connection: + - keep-alive + Content-Length: + - '1753' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --auth-types --radius-client-root-certs --radius-server-root-certs --radius-servers + --radius-servers + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"924bcb4b-2e3e-43ab-9e2f-eff1d6be5e8c\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [\r\n + \ {\r\n \"radiusServerAddress\": \"test1\",\r\n \"radiusServerScore\": + 10,\r\n \"radiusServerSecret\": \"clitest\"\r\n },\r\n {\r\n + \ \"radiusServerAddress\": \"test2\",\r\n \"radiusServerScore\": + 10,\r\n \"radiusServerSecret\": \"clitest\"\r\n }\r\n ],\r\n + \ \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n + \ \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAw\\r\\nMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAx\\r\\nMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBw\\r\\nbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcN\\r\\nAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJ\\r\\nSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x\\r\\n+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/\\r\\nxQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezO\\r\\nqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/\\r\\n7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYD\\r\\nVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0\\r\\naW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/Whcow\\r\\nDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT\\r\\n3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pR\\r\\nLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5yg\\r\\nCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjuj\\r\\nZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG\\r\\n7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n + \ }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n + \ \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": + \"ef6c937b5935e25941f2ea271d38f90dfdb20953\"\r\n }\r\n ],\r\n \"aadAuthenticationParameters\": + {},\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3be43f32-14b0-45da-b43e-f2dac04b5357?api-version=2020-04-01 + cache-control: + - no-cache + content-length: + - '2571' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:05: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: + - fa6b1e9c-0d4b-4411-9d5d-e0928641a8d7 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config set + Connection: + - keep-alive + ParameterSetName: + - -n -g --auth-types --radius-client-root-certs --radius-server-root-certs --radius-servers + --radius-servers + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3be43f32-14b0-45da-b43e-f2dac04b5357?api-version=2020-04-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:05: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: + - f9c6f0c1-5c63-48bc-aa94-807df2d38730 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config set + Connection: + - keep-alive + ParameterSetName: + - -n -g --auth-types --radius-client-root-certs --radius-server-root-certs --radius-servers + --radius-servers + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"2005588d-0ca2-4917-ac6c-6bb39fddb0dc\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [\r\n + \ {\r\n \"radiusServerAddress\": \"test1\",\r\n \"radiusServerScore\": + 10,\r\n \"radiusServerSecret\": \"clitest\"\r\n },\r\n {\r\n + \ \"radiusServerAddress\": \"test2\",\r\n \"radiusServerScore\": + 10,\r\n \"radiusServerSecret\": \"clitest\"\r\n }\r\n ],\r\n + \ \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n + \ \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAw\\r\\nMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAx\\r\\nMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBw\\r\\nbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcN\\r\\nAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJ\\r\\nSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x\\r\\n+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/\\r\\nxQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezO\\r\\nqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/\\r\\n7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYD\\r\\nVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0\\r\\naW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/Whcow\\r\\nDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT\\r\\n3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pR\\r\\nLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5yg\\r\\nCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjuj\\r\\nZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG\\r\\n7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n + \ }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n + \ \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": + \"ef6c937b5935e25941f2ea271d38f90dfdb20953\"\r\n }\r\n ],\r\n \"aadAuthenticationParameters\": + {},\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2572' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:05:49 GMT + etag: + - W/"2005588d-0ca2-4917-ac6c-6bb39fddb0dc" + 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: + - d31d563d-f691-4bd1-bc6c-dc719de8183b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config wait + Connection: + - keep-alive + ParameterSetName: + - -n -g --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"2005588d-0ca2-4917-ac6c-6bb39fddb0dc\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"Radius\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [\r\n + \ {\r\n \"radiusServerAddress\": \"test1\",\r\n \"radiusServerScore\": + 10,\r\n \"radiusServerSecret\": \"clitest\"\r\n },\r\n {\r\n + \ \"radiusServerAddress\": \"test2\",\r\n \"radiusServerScore\": + 10,\r\n \"radiusServerSecret\": \"clitest\"\r\n }\r\n ],\r\n + \ \"radiusServerRootCertificates\": [\r\n {\r\n \"name\": \"ApplicationGatewayAuthCert\",\r\n + \ \"publicCertData\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAw\\r\\nMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAx\\r\\nMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBw\\r\\nbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcN\\r\\nAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJ\\r\\nSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x\\r\\n+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/\\r\\nxQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezO\\r\\nqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/\\r\\n7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYD\\r\\nVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0\\r\\naW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/Whcow\\r\\nDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT\\r\\n3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pR\\r\\nLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5yg\\r\\nCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjuj\\r\\nZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG\\r\\n7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n + \ }\r\n ],\r\n \"radiusClientRootCertificates\": [\r\n {\r\n + \ \"name\": \"ApplicationGatewayAuthCert\",\r\n \"thumbprint\": + \"ef6c937b5935e25941f2ea271d38f90dfdb20953\"\r\n }\r\n ],\r\n \"aadAuthenticationParameters\": + {},\r\n \"vpnClientIpsecPolicies\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2572' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:05:51 GMT + etag: + - W/"2005588d-0ca2-4917-ac6c-6bb39fddb0dc" + 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: + - 192bdd29-d547-4bbe-902b-dba041ed7845 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config set + Connection: + - keep-alive + ParameterSetName: + - -n -g --auth-types --aad-audience --aad-issuer --aad-tenant --no-wait + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vpn_server_config000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001","name":"cli_test_azure_vpn_server_config000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-08T03:05:09Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '478' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:05:52 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": "westcentralus", "properties": {"vpnAuthenticationTypes": + ["AAD"], "aadAuthenticationParameters": {"aadTenant": "https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4", + "aadAudience": "a21fce82-76af-45e6-8583-a08cb3b956f9", "aadIssuer": "https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config set + Connection: + - keep-alive + Content-Length: + - '333' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --auth-types --aad-audience --aad-issuer --aad-tenant --no-wait + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"536eee63-8b09-4f39-9a17-10b73a3accc9\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"AAD\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [],\r\n + \ \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": []\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bc7a4852-dfa5-4e80-a799-609e52059b49?api-version=2020-04-01 + cache-control: + - no-cache + content-length: + - '1097' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:05: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: + - e39909d1-5c07-4a98-8690-da79fa8791c6 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config wait + Connection: + - keep-alive + ParameterSetName: + - -n -g --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"536eee63-8b09-4f39-9a17-10b73a3accc9\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"AAD\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [],\r\n + \ \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1097' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:05:54 GMT + etag: + - W/"536eee63-8b09-4f39-9a17-10b73a3accc9" + 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: + - a78e47e7-6fa6-4a67-bf81-bf7fc7347e60 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config wait + Connection: + - keep-alive + ParameterSetName: + - -n -g --created + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"2ea7f890-5aff-426e-a328-e9fb997d93cc\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"AAD\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [],\r\n + \ \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1098' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:06:24 GMT + etag: + - W/"2ea7f890-5aff-426e-a328-e9fb997d93cc" + 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: + - 5fbab76d-333a-434a-aa79-83e224a69a4e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"2ea7f890-5aff-426e-a328-e9fb997d93cc\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"AAD\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [],\r\n + \ \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1098' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:06:25 GMT + etag: + - W/"2ea7f890-5aff-426e-a328-e9fb997d93cc" + 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: + - 25463422-6625-471a-b4a4-0e258ea53e35 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations?api-version=2020-04-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"clitestserverconfig\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"2ea7f890-5aff-426e-a328-e9fb997d93cc\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnProtocols\": [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n + \ ],\r\n \"vpnAuthenticationTypes\": [\r\n \"AAD\"\r\n + \ ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": + [],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": + [],\r\n \"radiusClientRootCertificates\": [],\r\n \"aadAuthenticationParameters\": + {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": []\r\n }\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1235' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:06: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: + - 5a6a1e76-84cd-46e0-8dcd-e1a2f9bae4d0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config list + Connection: + - keep-alive + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/vpnServerConfigurations?api-version=2020-04-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"clitestserverconfig\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"2ea7f890-5aff-426e-a328-e9fb997d93cc\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnProtocols\": [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n + \ ],\r\n \"vpnAuthenticationTypes\": [\r\n \"AAD\"\r\n + \ ],\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": + [],\r\n \"radiusServers\": [],\r\n \"radiusServerRootCertificates\": + [],\r\n \"radiusClientRootCertificates\": [],\r\n \"aadAuthenticationParameters\": + {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": []\r\n }\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1235' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:06: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: + - 8defd46a-2aed-4da1-9df2-72cb4a02e69d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption + --ike-integrity --dh-group --pfs-group + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"2ea7f890-5aff-426e-a328-e9fb997d93cc\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"AAD\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [],\r\n + \ \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1098' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:06:28 GMT + etag: + - W/"2ea7f890-5aff-426e-a328-e9fb997d93cc" + 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: + - 06551728-49e5-4d0a-801b-c0005cd1c5bd + status: + code: 200 + message: OK +- request: + body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig", + "location": "westcentralus", "properties": {"vpnProtocols": ["OpenVPN", "IkeV2"], + "vpnAuthenticationTypes": ["AAD"], "vpnClientRootCertificates": [], "vpnClientRevokedCertificates": + [], "radiusServerRootCertificates": [], "radiusClientRootCertificates": [], + "vpnClientIpsecPolicies": [{"saLifeTimeSeconds": 86471, "saDataSizeKilobytes": + 429496, "ipsecEncryption": "AES256", "ipsecIntegrity": "SHA256", "ikeEncryption": + "AES256", "ikeIntegrity": "SHA384", "dhGroup": "DHGroup14", "pfsGroup": "PFS14"}], + "radiusServers": [], "aadAuthenticationParameters": {"aadTenant": "https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4", + "aadAudience": "a21fce82-76af-45e6-8583-a08cb3b956f9", "aadIssuer": "https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/"}}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config ipsec-policy add + Connection: + - keep-alive + Content-Length: + - '1001' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption + --ike-integrity --dh-group --pfs-group + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"414ba24b-ca85-4110-a165-95c2cb639132\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"AAD\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [],\r\n + \ \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": + 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": + \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": + \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": + \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ]\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2478d5bb-713b-48ba-8e06-086d0c9a9e81?api-version=2020-04-01 + cache-control: + - no-cache + content-length: + - '1406' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:06: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: + - 627ecadb-9fd0-4d7f-9667-34bfe5c8421f + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption + --ike-integrity --dh-group --pfs-group + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2478d5bb-713b-48ba-8e06-086d0c9a9e81?api-version=2020-04-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:06: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: + - bb1afade-0cf9-46de-8600-397facc5d7ab + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption + --ike-integrity --dh-group --pfs-group + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"af6f905a-8402-4107-8f0c-22595ebaf132\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"AAD\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [],\r\n + \ \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": + 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": + \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": + \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": + \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ]\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1407' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:06:40 GMT + etag: + - W/"af6f905a-8402-4107-8f0c-22595ebaf132" + 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: + - 42e4f512-13bc-4fe0-a227-48b3f73b600c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config ipsec-policy list + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"af6f905a-8402-4107-8f0c-22595ebaf132\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"AAD\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [],\r\n + \ \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": + 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": + \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": + \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": + \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ]\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1407' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:06:42 GMT + etag: + - W/"af6f905a-8402-4107-8f0c-22595ebaf132" + 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: + - e26acf0b-d72c-4ef8-a978-27d92a87a3d5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --index + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"af6f905a-8402-4107-8f0c-22595ebaf132\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"AAD\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [],\r\n + \ \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": + 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": + \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": + \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": + \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ]\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1407' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:06:43 GMT + etag: + - W/"af6f905a-8402-4107-8f0c-22595ebaf132" + 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: + - e6a13ca7-264d-45bf-bb65-a0f381dd2917 + status: + code: 200 + message: OK +- request: + body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig", + "location": "westcentralus", "properties": {"vpnProtocols": ["OpenVPN", "IkeV2"], + "vpnAuthenticationTypes": ["AAD"], "vpnClientRootCertificates": [], "vpnClientRevokedCertificates": + [], "radiusServerRootCertificates": [], "radiusClientRootCertificates": [], + "vpnClientIpsecPolicies": [], "radiusServers": [], "aadAuthenticationParameters": + {"aadTenant": "https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4", + "aadAudience": "a21fce82-76af-45e6-8583-a08cb3b956f9", "aadIssuer": "https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/"}}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config ipsec-policy remove + Connection: + - keep-alive + Content-Length: + - '787' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --index + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"38be8c68-7be3-4e09-b67d-dabdb80dd960\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"AAD\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [],\r\n + \ \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": []\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/cca17d5a-b7ea-4807-80c4-ad2f892bece8?api-version=2020-04-01 + cache-control: + - no-cache + content-length: + - '1097' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:06: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: + - 9ea82164-8040-4d91-a47b-c682b6333c13 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --index + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/cca17d5a-b7ea-4807-80c4-ad2f892bece8?api-version=2020-04-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:06: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: + - 3a206ec0-3043-44cc-96e9-a81ed504321a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --index + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"876b58f8-b902-4271-8a69-4e8979aa0e17\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"AAD\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [],\r\n + \ \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1098' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:06:55 GMT + etag: + - W/"876b58f8-b902-4271-8a69-4e8979aa0e17" + 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: + - b657a236-39aa-4abc-856a-7c891c3d5b34 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption + --ike-integrity --dh-group --pfs-group + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"876b58f8-b902-4271-8a69-4e8979aa0e17\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"AAD\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [],\r\n + \ \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1098' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:06:56 GMT + etag: + - W/"876b58f8-b902-4271-8a69-4e8979aa0e17" + 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: + - b28b5219-110f-4dfd-9c50-226bec0b5444 + status: + code: 200 + message: OK +- request: + body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig", + "location": "westcentralus", "properties": {"vpnProtocols": ["OpenVPN", "IkeV2"], + "vpnAuthenticationTypes": ["AAD"], "vpnClientRootCertificates": [], "vpnClientRevokedCertificates": + [], "radiusServerRootCertificates": [], "radiusClientRootCertificates": [], + "vpnClientIpsecPolicies": [{"saLifeTimeSeconds": 86471, "saDataSizeKilobytes": + 429496, "ipsecEncryption": "AES256", "ipsecIntegrity": "SHA256", "ikeEncryption": + "AES256", "ikeIntegrity": "SHA384", "dhGroup": "DHGroup14", "pfsGroup": "PFS14"}], + "radiusServers": [], "aadAuthenticationParameters": {"aadTenant": "https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4", + "aadAudience": "a21fce82-76af-45e6-8583-a08cb3b956f9", "aadIssuer": "https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/"}}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config ipsec-policy add + Connection: + - keep-alive + Content-Length: + - '1001' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption + --ike-integrity --dh-group --pfs-group + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"cb004b1a-b698-4906-9b56-679aa0d3650c\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"AAD\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [],\r\n + \ \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": + 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": + \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": + \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": + \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ]\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c52dae72-1e8c-42db-a267-8372a474b25a?api-version=2020-04-01 + cache-control: + - no-cache + content-length: + - '1406' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:06: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: + - 6251eb9d-b1b4-4786-b6d1-33eea2068d43 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption + --ike-integrity --dh-group --pfs-group + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c52dae72-1e8c-42db-a267-8372a474b25a?api-version=2020-04-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:07: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: + - c3829816-43da-4280-a486-7874bbaa53e1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -n -g --ipsec-encryption --ipsec-integrity --sa-lifetime --sa-data-size --ike-encryption + --ike-integrity --dh-group --pfs-group + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"c8f01176-1372-43a8-ae83-95c0debf82d9\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"AAD\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [],\r\n + \ \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": + 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": + \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": + \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": + \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ]\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1407' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:07:09 GMT + etag: + - W/"c8f01176-1372-43a8-ae83-95c0debf82d9" + 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: + - 23194d0d-d704-4ce4-b4a3-00187e124d77 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config ipsec-policy list + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"name\": \"clitestserverconfig\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig\",\r\n + \ \"etag\": \"W/\\\"c8f01176-1372-43a8-ae83-95c0debf82d9\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnServerConfigurations\",\r\n \"location\": \"westcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnProtocols\": + [\r\n \"OpenVPN\",\r\n \"IkeV2\"\r\n ],\r\n \"vpnAuthenticationTypes\": + [\r\n \"AAD\"\r\n ],\r\n \"vpnClientRootCertificates\": [],\r\n + \ \"vpnClientRevokedCertificates\": [],\r\n \"radiusServers\": [],\r\n + \ \"radiusServerRootCertificates\": [],\r\n \"radiusClientRootCertificates\": + [],\r\n \"aadAuthenticationParameters\": {\r\n \"aadTenant\": \"https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4\",\r\n + \ \"aadAudience\": \"a21fce82-76af-45e6-8583-a08cb3b956f9\",\r\n \"aadIssuer\": + \"https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/\"\r\n },\r\n + \ \"vpnClientIpsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": + 86471,\r\n \"saDataSizeKilobytes\": 429496,\r\n \"ipsecEncryption\": + \"AES256\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": + \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": + \"DHGroup14\",\r\n \"pfsGroup\": \"PFS14\"\r\n }\r\n ]\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1407' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:07:10 GMT + etag: + - W/"c8f01176-1372-43a8-ae83-95c0debf82d9" + 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: + - 8d934cf6-088a-4deb-b277-decd63bd4b48 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/cbde9af2-7d56-4a04-9e93-4b95f9ec56ea?api-version=2020-04-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jun 2020 03:07:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/cbde9af2-7d56-4a04-9e93-4b95f9ec56ea?api-version=2020-04-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: + - 6414f2e7-3014-4e37-9ecb-1a6c40efc2ec + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config delete + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/cbde9af2-7d56-4a04-9e93-4b95f9ec56ea?api-version=2020-04-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:07: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: + - d6111407-d685-446f-9001-bf0e69f678b6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-server-config show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig?api-version=2020-04-01 + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": + \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vpn_server_config000001/providers/Microsoft.Network/vpnServerConfigurations/clitestserverconfig + not found.\",\r\n \"details\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '321' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jun 2020 03:07:25 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: + - b958edee-fa00-4741-9925-b87b046fc652 + status: + code: 404 + message: Not Found +version: 1 diff --git a/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py b/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py index 93a943548fd..a0a1b71e956 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py +++ b/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py @@ -3,8 +3,13 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, StorageAccountPreparer, JMESPathCheck, NoneCheck, - api_version_constraint) +import os +import uuid +import mock +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, StorageAccountPreparer, + JMESPathCheck, NoneCheck, api_version_constraint) + +TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) class AzureVWanVHubScenario(ScenarioTest): @@ -40,3 +45,141 @@ def test_azure_vhub_connection_basic_scenario(self, resource_group): self.check('provisioningState', 'Succeeded'), self.check('name', self.kwargs.get('connection')) ]) + + @ResourceGroupPreparer(name_prefix='cli_test_azure_vpn_server_config', location='westcentralus') + def test_azure_vpn_server_config_basic_scenario(self, resource_group): + self.kwargs.update({ + 'vserverconfig': 'clitestserverconfig', + 'cert_file': os.path.join(TEST_DIR, 'data', 'ApplicationGatewayAuthCert.cer'), + 'pem_file': os.path.join(TEST_DIR, 'data', 'ApplicationGatewayAuthCert.pem'), + 'rg': resource_group, + 'aad_tenant': 'https://login.microsoftonline.com/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4', + 'aad_issuer': 'https://sts.windows.net/0ab2c4f4-81e6-44cc-a0b2-b3a47a1443f4/', + 'aad_audience': 'a21fce82-76af-45e6-8583-a08cb3b956f9' + }) + + self.cmd('network vpn-server-config create -n {vserverconfig} -g {rg} ' + '--vpn-client-root-certs "{cert_file}" ' + '--vpn-client-revoked-certs "{pem_file}"', + checks=[ + self.check('name', '{vserverconfig}'), + self.exists('vpnClientRootCertificates[0].publicCertData'), + self.exists('vpnClientRevokedCertificates[0].thumbprint'), + self.check('vpnAuthenticationTypes[0]', 'Certificate') + ]) + + self.cmd('network vpn-server-config set -n {vserverconfig} -g {rg} --auth-types Radius ' + '--radius-client-root-certs "{cert_file}" ' + '--radius-server-root-certs "{pem_file}" ' + '--radius-servers address=test1 secret=clitest score=10 ' + '--radius-servers address=test2 secret=clitest score=10') + + self.cmd('network vpn-server-config wait -n {vserverconfig} -g {rg} --created') + self.cmd('network vpn-server-config set -n {vserverconfig} -g {rg} --auth-types AAD ' + '--aad-audience {aad_audience} ' + '--aad-issuer {aad_issuer} ' + '--aad-tenant {aad_tenant} ' + '--no-wait') + + self.cmd('network vpn-server-config wait -n {vserverconfig} -g {rg} --created') + + self.cmd('network vpn-server-config show -n {vserverconfig} -g {rg}', checks=[ + self.check('vpnAuthenticationTypes[0]', 'AAD'), + self.check('aadAuthenticationParameters.aadTenant', '{aad_tenant}'), + self.check('aadAuthenticationParameters.aadAudience', '{aad_audience}'), + self.check('aadAuthenticationParameters.aadIssuer', '{aad_issuer}') + ]) + + self.cmd('network vpn-server-config list -g {rg}', checks=[ + self.check('length(@)', 1) + ]) + + self.cmd('network vpn-server-config list', checks=[ + self.check('length(@)', 1) + ]) + + self.cmd('network vpn-server-config ipsec-policy add -n {vserverconfig} -g {rg} ' + '--ipsec-encryption AES256 --ipsec-integrity SHA256 ' + '--sa-lifetime 86471 --sa-data-size 429496 --ike-encryption AES256 ' + '--ike-integrity SHA384 --dh-group DHGroup14 --pfs-group PFS14', + checks=[ + self.check('@[0].saLifeTimeSeconds', 86471), + self.check('@[0].saDataSizeKilobytes', 429496), + self.check('@[0].ipsecEncryption', 'AES256'), + self.check('@[0].ipsecIntegrity', 'SHA256'), + self.check('@[0].ikeEncryption', 'AES256'), + self.check('@[0].ikeIntegrity', 'SHA384'), + self.check('@[0].dhGroup', 'DHGroup14'), + self.check('@[0].pfsGroup', 'PFS14') + ]) + + self.cmd('network vpn-server-config ipsec-policy list -n {vserverconfig} -g {rg}', checks=[ + self.check('length(@)', 1) + ]) + + self.cmd('network vpn-server-config ipsec-policy remove -n {vserverconfig} -g {rg} --index 0') + + self.cmd('network vpn-server-config ipsec-policy add -n {vserverconfig} -g {rg} ' + '--ipsec-encryption AES256 --ipsec-integrity SHA256 ' + '--sa-lifetime 86471 --sa-data-size 429496 --ike-encryption AES256 ' + '--ike-integrity SHA384 --dh-group DHGroup14 --pfs-group PFS14', + checks=[ + self.check('@[0].saLifeTimeSeconds', 86471), + self.check('@[0].saDataSizeKilobytes', 429496), + self.check('@[0].ipsecEncryption', 'AES256'), + self.check('@[0].ipsecIntegrity', 'SHA256'), + self.check('@[0].ikeEncryption', 'AES256'), + self.check('@[0].ikeIntegrity', 'SHA384'), + self.check('@[0].dhGroup', 'DHGroup14'), + self.check('@[0].pfsGroup', 'PFS14') + ]) + + self.cmd('network vpn-server-config ipsec-policy list -n {vserverconfig} -g {rg}', checks=[ + self.check('length(@)', 1) + ]) + + self.cmd('network vpn-server-config delete -n {vserverconfig} -g {rg} -y') + with self.assertRaisesRegexp(SystemExit, '3'): + self.cmd('network vpn-server-config show -n {vserverconfig} -g {rg}') + + @ResourceGroupPreparer(name_prefix='cli_test_azure_vhub_connection', location='westus') + def test_azure_p2s_vpn_gateway_basic_scenario(self, resource_group): + self.kwargs.update({ + 'vwan': 'clitestvwan', + 'vwan2': 'clitestvwan2', + 'vhub': 'clitestvhub', + 'vhub2': 'clitestvhub2', + 'cert_file': os.path.join(TEST_DIR, 'data', 'ApplicationGatewayAuthCert.cer'), + 'pem_file': os.path.join(TEST_DIR, 'data', 'ApplicationGatewayAuthCert.pem'), + 'vserverconfig': 'clitestserverconfig', + 'vserverconfig2': 'clitestserverconfig2', + 'vp2sgateway': 'clitestvp2sgateway', + 'rg': resource_group + }) + + self.cmd('network vwan create -n {vwan} -g {rg} --type Standard') + self.cmd('network vhub create -g {rg} -n {vhub} --vwan {vwan} --address-prefix 10.5.0.0/16 -l westus --sku Standard') + self.cmd('network vpn-server-config create -n {vserverconfig} -g {rg} ' + '--vpn-client-root-certs "{cert_file}" ' + '--vpn-client-revoked-certs "{pem_file}"') + self.cmd('network vpn-server-config create -n {vserverconfig2} -g {rg} ' + '--vpn-client-root-certs "{cert_file}" ' + '--vpn-client-revoked-certs "{pem_file}"') + self.cmd('az network p2s-vpn-gateway create -g {rg} -n {vp2sgateway} --scale-unit 2 ' + '--vhub {vhub} --vpn-server-config {vserverconfig} --address-space 10.0.0.0/24 11.0.0.0/24 --no-wait') + self.cmd('az network p2s-vpn-gateway wait -g {rg} -n {vp2sgateway} --created') + self.cmd('az network p2s-vpn-gateway update -g {rg} -n {vp2sgateway} --scale-unit 3 ' + '--vpn-server-config {vserverconfig2} --address-space 13.0.0.0/24 12.0.0.0/24') + self.cmd('az network p2s-vpn-gateway list -g {rg}', checks=[ + self.check('length(@)', 1) + ]) + self.cmd('az network p2s-vpn-gateway list', checks=[ + self.check('length(@)', 1) + ]) + self.cmd('az network p2s-vpn-gateway show -g {rg} -n {vp2sgateway}', checks=[ + self.check('length(p2SconnectionConfigurations[0].vpnClientAddressPool.addressPrefixes)', 2), + self.check('vpnGatewayScaleUnit', 3) + ]) + self.cmd('az network p2s-vpn-gateway delete -g {rg} -n {vp2sgateway} -y') + with self.assertRaisesRegexp(SystemExit, '3'): + self.cmd('az network p2s-vpn-gateway show -g {rg} -n {vp2sgateway}')